
// This function opens a new browser window of an existing html
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// This function closes the browser window just opened
function MM_closeBrWindow(theURL,winName) { //v2.0
  window.close(theURL);
}
// This script opens a new browser window and writes
// HTML to display an image with a title and e-mail address
function doNothing(){} 
function show_photo1(pFileName, pTitle, pSize, pPrice, pType) {

// specify window parameters
  photoWin = window.open("", "photo", "width=660,height=600,status,scrollbars,resizable,screenX=10,screenY=10,left=10,top=10");

// write content to window  Cannot use punctuation in titles
  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
  photoWin.document.write('<body background="../images/background.gif" text=#8C3929 link=#996666 vlink=#8C3929 alink=#CC6666>');
  photoWin.document.write('<br clear="left">');
  photoWin.document.write('<center>');
  photoWin.document.write('<img src="' + pFileName + '"><p>');
  photoWin.document.write('<font face="verdana,arial,helvetica">');	  
  photoWin.document.write( '"<strong>' + pTitle + '</strong>"<br>');
  photoWin.document.write( '' + pSize + '<br>');
    photoWin.document.write(''  + pPrice + '<br>');
	  photoWin.document.write(''  + pType + '<br><br>');
  photoWin.document.write('<font size=2><a href="mailto:info@roycegalleries.com?subject='+ pTitle+'">E-mail us for more information about this piece</a><br>');
  photoWin.document.write('<font face="verdana,arial,helvetica">');	  
  photoWin.document.write('303-333-1722</font><br>');
  photoWin.document.write('</p></font></center></body></html>');
  photoWin.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();
}




// done hiding from old browsers -->
//-->