

function POPUP(url,n,w,h,scb){
	newWin=window.open(url,n,"scrollbars="+scb+",resizable=0,width="+w+",height="+h+",top=100,left=460");
		if (newWin !=null) {
			newWin.opener=self;		
		}
}

