
<!-- Begin POP-UP SIZES AND OPTIONS CODE



// USE lowercase FOR ALL OPTIONS ONLY


// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON


var small_icon 		= "yes"		// FOR THE SMALL POP UP ICON
var popup_text 		= "yes"		// HAVE TEXT IN THE POP-UPS
var picture_only	= "no"		// THE SIDE AREA WILL NOT BE VISIBLE

var close_button 	= "yes"		// CLOSE BUTTON ON/OFF
var slideshow_button 	= "yes"		// SLIDESHOW BUTTON ON/OFF

var watermark 		= "no"		// WATERMARK ON/OFF
var watermark_horz	= "300"		// WATERMARK POSITION
var watermark_vert	= "200"		// WATERMARK POSITION
var watermark_opacity	= "35"		// DOES NOT WORK IN NETSCAPE


// OTHER OPTIONS YOU CAN CHANGE


var slideshow_width 	= 750		// SLIDESHOW POPUP WINDOW WIDTH
var slideshow_height 	= 525		// SLIDESHOW POPUP WINDOW HEIGHT

var view_width 		= 750		// GALLERY POPUP WIDTH
var view_height 	= 525		// GALLERY POPUP HEIGHT

music_width		= "200"		// MUSIC POPUP WIDTH
music_height		= "200"		// MUSIC POPUP HEIGHT

var scrollbarS 		= "0"		// TURN ON POPUP SCROLLBARS "1" FOR ON "0" FOR OFF








// YOU DO NOT NEED TO EDIT BELOW THIS LINE
// START SLIDESHOW POPUP CODE



function popUpSlideshow(URL) {

day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + scrollbarS + ',location=0,statusbar=0,menubar=0,resizable=0,width='+slideshow_width+',height='+slideshow_height+'');");
}




// START GALLERY POPUP CODE



function popUp(URL,TITLE,TEXT) {

var look='toolbar=0,scrollbars=' + scrollbarS + ',location=0,statusbar=0,menubar=0,resizable=0,width='+view_width+',height='+view_height+','
popwin=window.open("","",look,"TITLE","TEXT")
popwin.document.open()
popwin.document.write('<html><title>Picture Close Up</title><head>')
popwin.document.write('<link rel=StyleSheet href="coolstyle.css" type="text/css" media="screen">')
popwin.document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">')
popwin.document.write('<script language="JavaScript">')
popwin.document.write('function noRightClick() {')
popwin.document.write('if (event.button==2) {')
popwin.document.write('alert(\'You may not right mouse click this page.\')')
popwin.document.write('}')
popwin.document.write('}')
popwin.document.write('document.onmousedown=noRightClick')
popwin.document.write('</script>')
popwin.document.write('</head>')
popwin.document.write('<body bgcolor="#FFFFFF" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">')
popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" height="100%" background="picts/background-popup.gif"><tr><td valign="top" align="middle">')
popwin.document.write('</td></tr><tr><td align="center">')
   if (picture_only == "no") {
popwin.document.write('<TABLE cellpadding="0" cellspacing="10" border="0" width="160"><tr><td align="center">')

   if (small_icon == "yes") {
popwin.document.write('<img src="picts/icon-popup.gif"><br>')
   }
   if (popup_text == "yes") {
popwin.document.write('<span class="poptitle">'+TITLE+ '</span><br>' +TEXT+'<br>')
}
popwin.document.write('</td></tr></table>')
   }
popwin.document.write('<td><td align="center" valign="center" width="100%">')
popwin.document.write('<img src="picts/spacer.gif" width="5" height="5"><br>')
popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#000000" style="border-collapse: collapse"><tr><td>')
popwin.document.write('<img src="'+URL+'"><br>')
popwin.document.write('</td></tr></table>')
popwin.document.write('<br>')
popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>')
   if (close_button == "yes") {
popwin.document.write('<form style="margin: 0px"><input type="submit" value="Close" onmouseover="this.className=\'buttonon-popups\'" onmouseout="this.className=\'button-popups\'" class="button-popups" onClick=\'self.close()\'>&nbsp;</form>')
}
   if (slideshow_button == "yes") {
popwin.document.write('</td><td>')
popwin.document.write('<form action="slideshow.htm" style="margin: 0px"><input type="submit" value="Slideshow" onmouseover="this.className=\'buttonon-popups\'" onmouseout="this.className=\'button-popups\'" class="button-popups"></form>')
}
popwin.document.write('</td></tr></table>')
// START WATERMARK CODE
   if (watermark == "yes") {
popwin.document.write('<div id="watermark" style=" LEFT: ' + watermark_horz + 'px; POSITION: absolute; TOP: ' + watermark_vert + 'px; Filter: Alpha(Opacity=' + watermark_opacity + ')">')
popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>')
popwin.document.write('<img src="picts/watermark.gif"><br>')
popwin.document.write('</td></tr></table>')
popwin.document.write('</div>')
}
popwin.document.write('</td></tr></table>')
popwin.document.write('</body></html>')
popwin.document.close()
}





// MUSIC POPUP CODE



	function PLAYMUSIC() {
	   msg=open('music/music-1.htm','frameWindow','scrollbars=no,toolbar=no,resizable=yes,directories=no,menubar=no,location=no,status=no,left=0,top=250,width=' + music_width + ',height=' + music_height + '');
	 }



// FULL SCREEN MODE

function fullScreen() {
  window.open(location.href,'fullscreen','fullscreen,scrollbars')
}




// -->



//  End -->