function makeRemote(url) {
	remote = 		
window.open(url,"remotewin","height=400,width=240,scrollbars=1,toolbar=0,location=0,resizable=0,left=0,top=0");
	if (parseInt(navigator.appVersion) >= 4) { remote.window.focus(); }
}

