//-- pop up --
function popup0(url, name)
{
	width = 620;
	height = 470;
	settings=
	"toolbar=no,location=no,directories=no,"+
	"status=no,menubar=no,scrollbars=no,"+
	"resizable=no,width="+width+",height="+height;

	MyNewWindow=window.open(url,name,settings);
}

function popupEx(url, width, height, name)
{
	settings = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + width + ",height=" + height;
	MyNewWindow=window.open(url,name,settings);
}

function popup(url, width, height)
{
	settings = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height;

	MyNewWindow=window.open(url,'view', settings);
}

//-- jump to url --
function jump2url(url)
{
	window.location=url;
}

function jumptourl(url)
{
	jump2url(url);
}

function JumpToURL(url)
{
	jump2url(url);
}
//-- --

