function changeImageSize(imageID, Width, Height)
{
    //document.getElementById("home").height="38";
    //document.getElementById("home").width="38";
    //var imageID = "home";
    document.getElementById(imageID).height=Height;
    document.getElementById(imageID).width=Width;
}

function openNewWindow(url)
{
	window.open(url,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=385, height=580");
}

function changeIframe(theIDName, theSourceFile)
{
	//document.getElementById("frame1").src="frame_c.htm";
	document.getElementById(theIDName).src=theSourceFile;	
}

function changeLocation(url)
{
	window.location=url;
}

function displayAlertBox(message)
{
	alert(message);	
}

function reloadPage()
{
	window.location.reload();
}

function writeVisitorBrowserInfo()
{
	var x = navigator;
	document.write("CodeName=" + x.appCodeName);
	document.write("<br />");
	document.write("MinorVersion=" + x.appMinorVersion);
	document.write("<br />");
	document.write("Name=" + x.appName);
	document.write("<br />");
	document.write("Version=" + x.appVersion);
	document.write("<br />");
	document.write("CookieEnabled=" + x.cookieEnabled);
	document.write("<br />");
	document.write("CPUClass=" + x.cpuClass);
	document.write("<br />");
	document.write("OnLine=" + x.onLine);
	document.write("<br />");
	document.write("Platform=" + x.platform);
	document.write("<br />");
	document.write("UA=" + x.userAgent);
	document.write("<br />");
	document.write("BrowserLanguage=" + x.browserLanguage);
	document.write("<br />");
	document.write("SystemLanguage=" + x.systemLanguage);
	document.write("<br />");
	document.write("UserLanguage=" + x.userLanguage);
	
	document.write(screen.width + "*" + screen.height);
	
}

function writeDocumentObjectInfo()
{
	document.write(document.title);
	document.write(document.URL);
	document.write(document.referrer);
	document.write(document.domain);
	document.write("This document contains: " + document.forms.length + " forms.");
	document.write("This document contains: " + document.images.length + " images.");
	
}