
function CheckPlacing(place,requiredplace)
{if (place==requiredplace)
{}
else
{location.replace("default.htm")}
}

function changeImage(ImageName, newImage)
{document.images[ImageName].src = newImage;}

var who;
var where;
var what;
var nametoshow;
function econtact(who, where, what, nametoshow){
document.write('<a href="' + 'mailto:' + who + '@' + where + '.' + what+ '">' + nametoshow+ '</a>');
}

function openWindow(the_url)
{
	var the_window=window.open(the_url,'the_window','height=250,width=500,scrollbars=no,resizable=no');
	the_window.focus();
	the_window.moveTo(0,0);
}