<!--
function popup(url){
window.open(url, 'newWin', "scrollbars=yes,resizable=no,toolbar=no,location=no,menubar=no,status=no,screenX=5,screenY=40,width=515,height=460");}

function customPopup(url, width, height)
{

// open full resizeable window int top left
	window.open(url, 'newWin', "scrollbars=yes,resizable=yes,toolbar=no,location=no,menubar=no,status=no,top=0screenX=0,screenY=0,width=" + width + ",height=" + height);
}
// -->
