function PopUp( url, name, width, height, attributes){
	mywin = window.open(url,name,'width='+width+', height='+height+', '+ attributes);
	mywin.focus();
}
