function openwWindow(windowname) {
	self.name = "main";
var windowprops = "toolbar=0,location=0,directories=0,status=0, " +
"menubar=0,scrollbars=0,resizable=0,width=799,height=599";
OpenWindow = window.open(windowname, "remote1", windowprops); // opens remote control
}

function openWindow(windowname) {
	self.name = "main";
var windowprops = "toolbar=0,location=0,directories=0,status=0, " +
"menubar=0,scrollbars=1,resizable=1,width=680,height=550";
OpenWindow = window.open(windowname, "remotex", windowprops); // opens remote control
}
function openVWindow(windowname) {
	self.name = "main";
var windowprops = "toolbar=0,location=0,directories=0,status=0, " +
"menubar=0,scrollbars=0,resizable=0,width=750,height=550";
OpenWindow = window.open(windowname, "remotex", windowprops); // opens remote control
}
function openVideoWindow(windowname) {
	self.name = "main";
var windowprops = "toolbar=0,location=0,directories=0,status=0, " +
"menubar=0,scrollbars=1,resizable=0,width=800,height=600";
OpenWindow = window.open(windowname, "remoteVideo", windowprops); // opens remote control
}

function openSurvey(windowname) {
	self.name = "main";
var windowprops = "toolbar=0,location=0,directories=0,status=0, " +
"menubar=0,scrollbars=1,resizable=1,width=552,height=550";
OpenWindow = window.open(windowname, "remotex", windowprops); // opens remote control
}
