﻿// JScript File

function movr(el,hurl)
{
	el.oldsrc = el.src;
	el.src = hurl;
}

function mout(el)
{
	if( el.oldsrc )
		el.src = el.oldsrc;
}

				 

function printpage(url)
{
	var w = window.open( url, "printme", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=450,height=400");
	w.focus();
}

function init()
{	  
	try
	{
		if( custominit )
			custominit();
	}
	catch( z )
	{
	}
	
}