function openwin(height,width,top,left,content,link)
{
	
	Popup = window.open('','','height='+height+',width='+width+',top='+top+',left='+left);
	
	Popup.document.open();
  
  	Popup.document.write("<html><head><title>Popu</title>");
  	Popup.document.write("<meta http-equiv='Content-Type' content='text\/html; charset=UTF-8'>");
  	Popup.document.write("</head>");
  	Popup.document.write("<body leftmargin='0' topmargin='0'>");
  	
  	if(link =="")
  	{
  	Popup.document.write(content);
  	}
	if(link!="")
	{
	Popup.document.write('<a href=\"' +link +'\" target=\"_blank\">' + content + '</a></div>');
	}
 
  Popup.document.write("</body></html>");

}


