
function OpenPopup(ThisPopup) {
	var OpenWindow;
	if (OpenWindow == null) {
	OpenWindow = window.open("",
			"Popup",
			"scrollbars,resizable,width=740,height=550")
}
	 if (OpenWindow != null) {
	OpenWindow.window.location = ThisPopup;
	OpenWindow.moveTo(30,30);
	OpenWindow.focus();
}
}


function OpenWebCam(ThisPopup) {
	var OpenWindow;
	if (OpenWindow == null) {
	OpenWindow = window.open("",
			"Popup",
			"scrollbars,resizable,width=800,height=670")
}
	 if (OpenWindow != null) {
	OpenWindow.window.location = ThisPopup;
	OpenWindow.moveTo(30,30);
	OpenWindow.focus();
}
}
