url = new String();
url = window.location.search;
url = unescape(url.substr(1));

directframe();

function directframe()
{
	if (document.frames.length==0) { setTimeout("directframe();",100); return; }
	if (url) { 
		document.frames[2].location.href=url;
//		alert (url);
		}

}

