function makeRemote(url) {
	remote = window.open("","remotewin","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=520,height=250,top=0,left=0");
	remote.location.href = url;
	if (remote.opener == null) remote.opener = window; 
	remote.opener.name = "opener";
}

function openSurvey(url) {
	surveywindow = window.open("","remotewin","toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=640,height=460,top=0,left=0");
	surveywindow.location.href = url;
}

function openImage(imageName) {
	remote = window.open("","enlargement","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,top=0,left=0,height=1,width=1");
	remote.location.href = 'openimage.html?'+imageName+'';
}

function flashGetHref() { return location.href; }
function flashPutHref(href) { location.href = href; }
function flashGetTitle() { return document.title; }
function flashPutTitle(title) { document.title = title; }
