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(""); Popup.document.write(""); Popup.document.write(""); if(link =="") { Popup.document.write(content); } if(link!="") { Popup.document.write('' + content + ''); } Popup.document.write(""); }