<!--

	function PopupImage(imageName, ww, wh) { 
		
		myNewWindow = window.open('', 'vintagepopimg','width=' + ww +',height=' + wh + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0'); 
		myNewWindow.document.write("<HTML><HEAD><title>Vintage Music Service</title><\/HEAD>");
		myNewWindow.document.write("<BODY leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
    myNewWindow.document.write("<table width='100%' height='100%'>");
    myNewWindow.document.write("<tr><td align='middle' valign='middle'>");
		myNewWindow.document.write("<IMG SRC='" + imageName + "'>");
    myNewWindow.document.write("</td></tr>");
    myNewWindow.document.write("</table><\/BODY><\/HTML>");
		myNewWindow.document.close();
		myNewWindow.focus();
		
	} 
  
  function PopupWin(linkurl) {
    myNewWindow = window.open(linkurl,'popvintagenews','width=700,height=400,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0'); 
    myNewWindow.focus();
  }
//-->


