//<!-- Window.js

//jumps to a url
function jump(sUrl)
{
	parent.location.href = sUrl;
}

//Sets the window status
function windowSetStatus(str){
	window.status = str;
}


//-->