// JavaScript Document

			function agreeCheck() {
			if(document.form1.checkbox1.checked == false) {
			alert("If you agree to the above contents please check the AGREE button and select NEXT")
			window.location.href = "#"
			}else{
			
			openImage("https://www.plus-vision.com/contact/en/support/inquiry-form_2.html","800","800");
				}
			}

var nw="";
var subWin =0;		
function openImage(subHtml,subwidth,subheight){
   		subWin +=1;		
        nw = window.open(subHtml,subWin,"width="+subwidth+",height="+subheight+",scrollbars=yes,location=no,menubar=no,resizable=yes,left=10,top=30");
   
    nw.focus();
}

