/*
############################################
#
#		ePhotos - www.mazaryk.com/ephotos
#	
#		E. Scott Eastman - July/04
#
*/

//
//  --Open Picture Window--
//
function newWin(picString) 
{
 myPWin = window.open(picString, "myPicWindow", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,top=10,left=10,height=630,width=760,");
 myPWin.focus()
}

function ShowAd()
{
  myAdWin = window.open("freeprint.htm", "myAdWin", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,top=100,left=100,height=350,width=350,");
}

function myPopUp(sURL)
{
  myPopUp = window.open(sURL, "myPopUpWin", "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=100,left=100,height=300,width=350,");
}

function show_photo(picID) 
{
 newWin("photo.php?id=" + picID);
}
//[EOF]