// JavaScript Document


	
function cl_xmlHttpObject () 
	  {  
          var xml_http_object;       
  
          try{ 
              	xml_http_object = new XMLHttpRequest();  
				
          	 }catch(e)
			 {
          		try { 
                  		xml_http_object = new ActiveXObject("Msxml2.XMLHTTP");
						
						
              		}
					catch(e)
					{ 
                  		try {
                      			xml_http_object = new ActiveXObject("Microsoft.XMLHTTP");
  
                  } catch(e) { 
                      //alert("ERROR: Your browser does not support AJAX.");
                      return false; 
                  }

              }
 
          }    

          return xml_http_object;      
 
      }
	
		
/////Dispaly select Artist Image in Large Side////////////
	
	function checkEmail(id, url)
	{  var submail=id;
		var url=url;
		if(isEmail(submail) == false)
		{		
			document.frmHeader.email.focus();
			return false;
		}else{
			window.location='sentMail.php?email='+submail+'&url='+url;
			return false;
		}
	}

