// JavaScript Written By Marc Castles MCWeb - version 1 // You can change the background color below function popupMedia(url,width,height) { winheight = parseFloat(height) + 30; winwidth = parseFloat(width) + 30; newWin=window.open('', 'popupwin','resizable=0,HEIGHT='+winheight+',WIDTH='+winwidth+', scrollbars=0', true); newWin.document.write('\n'); newWin.document.write('\n'); newWin.document.write('Image'); newWin.document.write('\n'); newWin.document.write('\n'); newWin.document.write('\n'); newWin.document.write('\n'); newWin.document.write('\n\n
\n'); newWin.document.write(''); newWin.document.write('
\n\n\n'); newWin.document.write(''); newWin.document.close() newWin.focus(); } function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); }