// JavaScript Document
function openPopup(url, name, h, w) {
	nWindow = window.open(url, name, "height="+h+", width="+w+", scrollbars");
	nWindow.focus();
}