function Topor(href, theRest) {
	return document.write('<a href="javascript:gogo(\'' + href + '\')" ' + theRest + '>');
}

function Topor1(href, theRest) {
	return document.write('<a href="' + href + '"' + theRest + '>');
}

function gogo(href) {
	
	top.location = href
}

//Function to change page from option list
function linkURL(URL) {
	if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;	
	return true;
}

function extjump(URL)
{
	return window.open(URL, 'jumpwin');
}

//Screen resolution tricks
var site_width	= 1024;
var site_height	= 768;
if (self.screen) {
	site_width = screen.width
	site_height = screen.height
}
