function submitForm(songId,w1,type){
        var strURL;
        var winPl;
        if(type==null)
           type="";
	strURL="http://www.odiamusic.com/omplayer/media.php?";
        if (w1 ==null) 
		w = "omSongsList";
        else
                w = w1;

if (songId ==null){
did=0;
  if(w1 == null) {
     //alert(document[w].elements.length);
     for(i=0;i<document[w].elements.length;i++){
       if(document[w].elements[i].checked){
         did=1;
         strURL += document[w].elements[i].name+'='+document[w].elements[i].value+'&';
       }

     }
  }else {
     //alert(document[w].elements.length);
        for(i=0;i<document[w].elements.length;i++){
      
        did=1;
        strURL += document[w].elements[i].name+'='+document[w].elements[i].value+'&';
      
    }
}
if(did){
strURL = strURL;
createCookie('OMPLOC',readCookie('OMPlayer'),0,".odiamusic.com");
winPl = window.open(strURL,"omplayer","height=250,width=475,scrollbars=no,resizable=no,toolbar=no,status=no");
  if (winPl ==null){
    alert('Please Switch off the Pop-up Blocker of your browser and Retry'); 
  }


}else{
   alert("Please select atleast one song to play");
 }
} // outer if for songId
else {

strURL += 'checkbox1='+songId+'&type='+type;
createCookie('OMPLOC',readCookie('OMPlayer'),0,".odiamusic.com");
winPl = window.open(strURL,"omplayer","height=250,width=475,scrollbars=no,resizable=no,toolbar=no,status=no");
  if (winPl ==null){
    alert('Please Switch off the Pop-up Blocker of your browser and Retry'); 
  }
}

}