/*for download page*/
function WinOpen( url ){
	var WO1;
	WO1 = window.open( url, "","scrollbars=yes,resizable=yes,width=800,height=600");
}

/*for web camera config page*/
function CameraWinOpen( url ){
	var WO2;
	WO2 = window.open( url, "","scrollbars=yes,resizable=no,width=880,height=800");
}

/*for tool in web camera config page*/
function ToolWinOpen( url ){
	var WO3;
	WO3 = window.open( url, "","scrollbars=yes,resizable=yes,width=800,height=600");
}

/* Close frame parent window */
function WinClose(){
	parent.window.close();
}
