var winpopup;
function popupwindow(url, windowName) {
	winpopup = window.open(url, windowName, 
		"scrollbars=yes, resizable=yes, height=500, width=650, screenX=100, screenY=0, left=100, top=0");
	return winpopup;
}

