
function popupWindow(win,width,height){
	
	newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+width+',height='+height+',left=0,top=0');
	newWindow.focus();
}

