function popup(text) {
w1=window.open('','w1','width=500,height=350,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
w1.document.open();
w1.document.write("<html><head><title>Image Zoom<\/title><META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\"><META HTTP-EQUIV=\"Expires\" CONTENT=\"-1\"><\/head>");
w1.document.write("<body bgcolor='#FFFFFF' text='#000000' leftmargin=10 topmargin=10>");
w1.document.write(text);
w1.document.write("<br><br><center><a href=\"javascript:window.close();\"><font size=1 face=tahoma color=#000000>close window<\/font><\/a></center><\/body><\/html>");
w1.document.focus();
};

function popupurl(link)
{
	var w = window.open(link,'w1','width=500,height=350,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
}
