function popIt(page, widthVal, heightVal){ 
	PopIt(page,widthVal,heightVal);
}
function PopIt(page, widthVal, heightVal){ 
	var newWnd = window.open( page, 'popupWindow', 'status,resizable,scrollbars,width=' + widthVal + ',height=' + heightVal + ',left=' + screen.availLeft + ',top=' + screen.availTop + '', true ); 
	newWnd.focus(); 
}

function OpenUrl(url){
	window.location.href=url;
}


/*This function detects the browser type and major version and displays the appropriate message to upgrade the browser.
NOTE : Used this function is used with the pdfa home page.
*/
function DetectBrowser()
    {
		
		bName = navigator.appName; //1
		bVer = parseInt(navigator.appVersion); //2
		//alert(navigator.appVersion);
		/*
		IMPORTANT! The version number is WRONG in IE 5.0 or later!  (Ref. :http://www.w3schools.com/js/js_browser.asp)
		Microsoft starts the appVersion string with the number 4.0. in IE 5.0 and IE 6.0!!! Why did they do that??? 
		However, JavaScript is the same in IE6, IE5 and IE4, so for most scripts it is ok.
		*/
		if ((bName == "Microsoft Internet Explorer" && bVer < 4) ||
			bName == "Netscape" && bVer <= 4 )
		{
			alert("We have detected that you are using an old version of " + bName + " browser . You may still browse this site, but you may find problems with the way pages appear or work. We suggest that you upgrade your browser.");
		}
    }