function popup(url,name,h,w){
	popWindow=window.open(url, name, 'toolbar=0,resizable=1,scrollbars=yes,location=0, screenX=300, screenY=100, left=300, top=100, height='+ h +',width=' + w);
	popWindow.focus;
}


function popup2(url,h,w)
{
	popWindow=window.open(url,'popWin', 'toolbar=0,resizable=1,scrollbars=yes,location=0, screenX=300, screenY=100, left=300, top=100, height='+ h +',width=' + w);
	popWindow.focus;
}

