function mv (id) {
	id.className=id.className+'Over';
	
}

function mo (id) {
	var myclass = id.className;
	id.className=myclass.replace("Over","");
}

function visit(id) {
	location.href='/easyconsole.cfm?id='+id;
}

function openImageWindow2(imageSrc,imageTitle)
{
/*
 * if you use the name "_PAGE" for the page
 * you will have no problems at all
 * however if you change the name to something else
 * remember to change the reference to it in the following line of code
 * to reference your own filename..
 *
 * No _PAGE specified uses the javascript code embedded on this page.
 *
 */

	_CONTENT="";
	_CONTENT+="<HTML>\n";
	_CONTENT+="<head>\n";
	_CONTENT+="<"+"SCRIPT>\n";
	_CONTENT+="function specialInit()\n";
	_CONTENT+="{\n";
	_CONTENT+="if (document.all || document.layers)\n";
	_CONTENT+="window.resizeTo(document.images[0].width + 50,document.images[0].height + 180);\n";
	_CONTENT+="}\n";
	_CONTENT+="</"+"SCRIPT>\n";
	_CONTENT+="</head>\n";
	_CONTENT+="<BODY onLoad='specialInit();'>\n";
	_CONTENT+="<"+"SCRIPT>\n";
	_CONTENT+="document.write('<center>');\n";
	_CONTENT+="document.write('<b><font color=\\'#ffffff\\'>');\n";
	_CONTENT+="document.write('<span style=\\'BACKGROUND-COLOR:#0000ff\\'>&nbsp;');\n";
	_CONTENT+="document.write('"+imageTitle+"' +' &nbsp;</span></font></b><HR>');\n";
	_CONTENT+="document.write('<IMG SRC=\\'"+imageSrc+"\\'>');\n";
	_CONTENT+="document.write('<HR><P><P><P><FORM><INPUT TYPE=button VALUE=Close onClick=window.close()></FORM>');\n";
	_CONTENT+="document.write('</center>')\n";
	_CONTENT+="</"+"SCRIPT>\n";
	_CONTENT+="</BODY>\n";
	_CONTENT+="</HTML>\n";

 	var _parms = 'directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes';
 	var _windowName = "PicViewer";
	
		myWindowHandle=window.open("",_windowName,_parms);
		myWindowHandle.document.open();
		myWindowHandle.document.write(_CONTENT);
		myWindowHandle.document.close();
 	
	myWindowHandle.focus();
}
function doNothing() {}

function openFile(path) {
	location.href=path;
}
function currency(curr,amount,lang) {
		  wn=window.open('/utils/currency.cfm?currency='+curr+'&amount='+amount+'&lang='+lang,'tools','width=400,height=320');
}
function mortgage(unit,amount,lang) { 
		  wn=window.open('/utils/mortgage.cfm?unit='+unit+'&amount='+amount+'&lang='+lang,'tools','width=400,height=500');
}



