// USAGE
//<A HREF="javascript:openWin('gfx/ALI-2.JPG',488,625);" onMouseOut="window.status=''; return true" onMouseOver="window.status='see a larger image in a new window'; return true">ABOUT/IMAGES/Dross666.jpg</A><BR><BR>

// 
function openWin(myLoc, myWidth, myHeight)
{
	myWindow = window.open('', 'mvpop', 'height='+myHeight+','+'width='+myWidth+',toolbar=no,border=0,margin=0,resizeable=no,menubar=no,topmargin=0,leftmargin=0') 
	myWindow.document.writeln ('<head><title>-=/[ MindVox / Image Viewer ]/=-</title></head>');
	myWindow.document.writeln ('<body bgcolor=#000000 leftmargin=0 topmargin=0>');
	myWindow.document.writeln ('<img src='+myLoc+'>');
	myWindow.document.writeln ('</body></html>');
}
