function openPopUp(title,str){
	var path="<a href=\"javascript:self.close();\"><img src=\"../images/popups/"+str+"\"></a>";
	var width="614", height="240";
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;
	var styleStr ='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=no,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;	
	var win = window.open("",title, styleStr);
	var mystyle="<link rel=\"stylesheet\" type=\"text/css\" href=\"../Library/css/pop.css\" />";
	var head = '<head><title>'+title+'</title>'+mystyle+'</head>';
	var body = '<center>'+path+'</center>';
	win.document.write(head + body);
}