function popUp(url,left,top,width,height){
	var myWin = window.open(url,'my','left='+left+',top='+top+',width='+width+',height='+height);
	myWin.focus();
	
	}
