// JavaScript Document

function swap(imgName,fileName) {
			if (document.images) document.images[imgName].src = ''+fileName;
		}
		
		
function fixedPopup(windowURL) {
	newwindow=window.open(windowURL,'name','toolbar=no,directories=no,location=no,status=yes,menubar=no,resizable=yes,scrollbars=auto,width=716,height=360');
	 if (window.focus) {newwindow.focus()}
}


function popupCustom(customURL,popupName,characteristics) {
	window.open(customURL,popupName,characteristics);
}


<!-- Idea by:  Nic Wolfe (Nic@TimelapseProductions.com) -->
<!-- Web URL:  http://fineline.xs.mw -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=770,height=490,left = 50,top = 50');");
}
// End -->


