function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// JavaScript Document
function addBookmark(title,url) {
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true;
}
}


function chk_radio(form_name) {
   	dml=eval('document.'+form_name);
   	len=dml.elements.length;
   	var i=0;
	var count=0;
   	for (i=0; i<len; i++) {
     	if (dml.elements[i].type == "checkbox") {
        	if (dml.elements[i].checked) { 
           		count=1;
        	}     	
		}   
   	}
	if(count==0){
		alert('You must agree with our terms & conditions');
		return false;
	}
}