<!--
function OnClick_ShowRemote(cURL, cWidth, cHeight)
{
	self.name = "main"; // names current window as "main"
	var windowprops = "toolbar=0,location=0,directories=0,status=0,bgcolor='#000000'," + "menubar=0,width=" + cWidth + ",height=" + cHeight + ",left=200,top=60,scrollbars=0";
	OpenWindow = window.open(cURL, "remote", windowprops); // opens remote control
}
// -->
