/* JavaScript Code for Pop-ups */
function new_window(url,scrollbars,width,height,top,left) 
	{ 
		link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+ scrollbars +",resizable=0,width="+ width +",height="+ height +",left="+ left +",top="+ top +""); 
	}
/* 
	###############################################################################
	#  HOW TO USE THIS:    ########################################################
	###############################################################################
	#  This is code to pop-up a window of an external html file. As it stands now,#
	#  when the code is activated, it will not show the toolbars, location bar,   #
	#  directories, status bar, the menubar, and it wont' be resiazable.          #
	#  This code is setup for you to control the size of the window, whether or   #
	#  not scrollbars will show up and where it will appear on the screen. You    #
	#  also have to specify the name of the html file. here is the code:          #
	#                                                                             #
---------------------------------------------------------------------------------------
|   <a href="javascript:new_window('file.html','0','400','300','0','0');">Link</a>    |
---------------------------------------------------------------------------------------
	#                                                                             #
	#  What everything means:                                                     #
	#	file.html - replace with the name of the file you need popped up		  #
	#	1 - shows the scrollbars 0 (zero) will not show the scrollbars            #
	#	400 - the width in pixels of the pop-up window                            #
	#	300 - the height in pixels of the pop-up window                           #
	#	50 - the number of pixels from the left the pop-up window will appear	  #
	#	25 - the number of pixels from the top the pop-up window will appear      #
	#	Link - the description of the link - standard stuff here                  #
	###############################################################################
*/
/* END */

/* JavaScript Code for Rollover */
function showOn(imgName, caption) { 
	document.images["gallery"].src = eval(imgName + ".src");
	document.cut.caption.value = eval(caption);
}
/* END */