function openWin(Loc){
		window.open(Loc,'','scrollbars=no,status=no,resizable=yes,width=450,height=650,top=20,left=50');
	}
function openPage(Loc){
		window.location=Loc;
	}
function openWinF(Loc,Width,Height){
		window.open(Loc,'','scrollbars=no,status=no,resizable=yes,width='+Width+',height='+Height+',top=20,left=50');
	}