// JavaScript Document
/*******************************************************
Project Name	: Eyeline Golf*****/
/********************************************************/
/*******************************************************
Purpose		: To open a pop up
Parameters	: url, container id in which the pop up will imerge
			  and the background layout div id
Created By	:
Modified By	:
********************************************************/
/**************Apply the check for the chnaging the membership type*************************/

function b_CustomStatsTextChange(customInPutText1,customInPutText2,customInPutText3)
{	
	  var showAlert = false; 
	  if($('cntnt01feu_customfield0').value!=customInPutText1)
	  {
	    showAlert=true;
	  }
	  if($('cntnt01feu_customfield1').value!=customInPutText2)
	  {
	    showAlert=true;
	  }
	  if($('cntnt01feu_customfield2').value!=customInPutText3)
	  {
	    showAlert=true;
	  }
	  if(showAlert == true)
	  {
		 $('UserChangeSettingId').style.display='';
		 $('popUpDiv').style.display='';
		 return true;
	  }
	  return false;
}
 /**************Apply the check for the chnaging the membership type*************************/

function m_UpdateMyAcccountPopup(sUrl,sContainerId,sBgId,sFormName,defaultPaymentOPtion,customInPutText1,customInPutText2,customInPutText3,actionSubmit)
{	
	//disableSelectBox('registeruser','none');
	/**************Apply the check for the chnaging the membership type*************************/
	if($('billingInfo').style.display!='none')
	{
	  var radioGrp = document['forms']['myaccountform']['cntnt01input_payment_option'];
	  if(radioGrp)
	  {	
		if(radioGrp.length >1)
		{
			for(i=0; i < radioGrp.length; i++)
			{
						if (radioGrp[i].checked == true)
						{
							var radioValue = String(radioGrp[i].value);
						}
			 }
		 }
		 else
		 {
			var radioValue = document.myaccountform.cntnt01input_payment_option.value;
		 }
		 if(defaultPaymentOPtion != radioValue)
		 {
		   var answer = confirm("Are you sure you want to change the your membership type?\nThe new membership type will be applicable from the next billing cycle.")
			if(!answer)
			{
			  return false; 
			}
		 }
	   }
	 }
	  /**************Apply the check for the chnaging the membership type*************************/
	  var showAlert = false;
	  if(actionSubmit=="")
	  {
			if($('preferences').style.display!='none')
			{
			  showAlert = b_CustomStatsTextChange(customInPutText1,customInPutText2,customInPutText3);
			}
	  }
	  else
	  {
	  		  showAlert = false; 
	  }
 	 if(actionSubmit=='cancel')
	 {
		  $('UserChangeSettingId').style.display='none';
		  $('cntnt01feu_customfield0').value=customInPutText1;
		  $('cntnt01feu_customfield1').value=customInPutText2;
		  $('cntnt01feu_customfield2').value=customInPutText3
		  $('popUpDiv').style.display='none';
		  showAlert = false;
		  return false;
	  }
 	  if(actionSubmit=='reset')
	  {
		  $('UserChangeSettingId').style.display='none';
		  $('popUpDiv').style.display='none';
		  if($('cntnt01feu_customfield0').value!=customInPutText1)
		  {
		  	$('input_custom_reset0').value = 1; 
		  }
		  if($('cntnt01feu_customfield1').value!=customInPutText2)
		  {
		  	$('input_custom_reset1').value = 1;
		  }
		  if($('cntnt01feu_customfield2').value!=customInPutText3)
		  {
		  	$('input_custom_reset2').value = 1;
		  }
		  showAlert = false;
	   }
 	   if(actionSubmit=='keep')
	   {
		   $('UserChangeSettingId').style.display='none';
		   $('popUpDiv').style.display='none';
    	   showAlert = false;
	   }
 /**************Apply the check for the chnaging the membership type*************************/
 if(showAlert==false)
 {	
	//Added by Avesh(SP) for the My Account related changes
	custom_min1 =  $('cntnt01feu_customfieldMinVal0').value=="" ?'':$('cntnt01feu_customfieldMinVal0').value;
	custom_max1 =  $('cntnt01feu_customfieldMaxVal0').value=="" ?'':$('cntnt01feu_customfieldMaxVal0').value;
	custom_min2 =  $('cntnt01feu_customfieldMinVal1').value=="" ?'':$('cntnt01feu_customfieldMinVal1').value;
	custom_max2 =  $('cntnt01feu_customfieldMaxVal1').value=="" ?'':$('cntnt01feu_customfieldMaxVal1').value;
	custom_min3 =  $('cntnt01feu_customfieldMinVal2').value=="" ?'':$('cntnt01feu_customfieldMinVal2').value;
	custom_max3 =  $('cntnt01feu_customfieldMaxVal2').value=="" ?'':$('cntnt01feu_customfieldMaxVal2').value;
   
	$('myGoalsIdFooter').innerHTML = $('myGoalsId').innerHTML = '<a href="javascript:void(0);" onclick="javascript:m_MyGoalsPopup(\'index.php?page=widget&showtemplate=false\',\'overlay673\',\'transparentdiv\',\'\',\'\',\''+custom_min1+'\',\''+custom_max1+'\',\''+custom_min2+'\',\''+custom_max2+'\',\''+custom_min3+'\',\''+custom_max3+'\');" title="My Goals">My Goals</a>';
	
	tt=document.getElementsByName('myaccountform');	
	var pars = $(tt[0]).serialize();

	$(sContainerId).style.display="";
	if(!sBgId)
	 sBgId='transparentdiv';
	$(sBgId).style.display="";
	var loader = 'loader';
	$(sContainerId).innerHTML="<div class='"+loader+"'></div>"
	 new Ajax.Request(sUrl, 
					{
						method:'post', parameters: pars, onComplete:function(request) 
						{  
						  if(request.responseText.indexOf('Your Session has been expired')>=0)																																					 						   {
												window.location='index.php?action=login';																															 
																																										 							}
								
								if(request.responseText!="")
									$(sContainerId).innerHTML = request.responseText;								
								else
								{
									alert("Some error occured processing this request. Please try after sometime.");
									$(sBgId).style.display="none";
								}
						}					
					});	
			scrollEvent(sContainerId);
			return false;
  }
}
function m_UpdatePopup(sUrl,sContainerId,sBgId,sFormName)
{	
	//disableSelectBox('registeruser','none');
	 if (location.protocol === 'https:')
	 {
    		// page is secure
		sUrl= sUrl.replace(/^http:/, 'https:');
 	 }
	if(sFormName)
		var pars = $(sFormName).serialize();
	else
		var pars = '';
	
	$(sContainerId).style.display="";
	if(!sBgId)
	 sBgId='transparentdiv';
	$(sBgId).style.display="";
	var loader = 'loader';
	$(sContainerId).innerHTML="<div class='"+loader+"'></div>"

	new Ajax.Request(sUrl, 
					{
						method:'post', parameters: pars, onComplete:function(request) 
						{
							if(request.responseText.indexOf('Your Session has been expired')>=0)																																					 						     {
							   window.location='index.php?action=login';																															  																																			 							   }
								
								if(request.responseText!="")
									$(sContainerId).innerHTML = request.responseText;								
								else
								{
									alert("Some error occured processing this request. Please try after sometime.");
									$(sBgId).style.display="none";
								}
						}					
					});	
	scrollEvent(sContainerId);
	hide_dropdowns('in');
	return false;
}

   /*******************************************************
	Purpose		: To display & Hide object tags
	Parameters	: 
	Cre1ated By	: Avesh Srivastava(SP)
	Created On	: 06-sep-2010
	********************************************************/
    function m_DisplayHideObject(flag)
	{ 
		var objArr = document.getElementsByTagName('object');
		if(objArr.length!=0){
		  for (var i=0; i<objArr.length; i++)
		  {
		   if(flag)
		   {
		   objArr[i].style.display='';
		   }
		   else
		   {
		    objArr[i].style.display='none';
		   }
		   
		  }
		}
	}
/*******************************************************
Purpose		: To open a pop up
Parameters	: url, container id in which the pop up will imerge
			  and the background layout div id
Created By	: Avesh Srivastava
Created On	: 16-sep-2009
********************************************************************************************************************************************/
// function modified by the Avesh(SP) for the custom stats related changes
function m_MyGoalsPopup(sUrl,sContainerId,sBgId,sFormName,setClose,CustomFieldsMin1,CustomFieldsMax1,CustomFieldsMin2,CustomFieldsMax2,CustomFieldsMin3,CustomFieldsMax3)
{
	if (location.protocol === 'https:')
	 {
    	// page is secure
		sUrl= sUrl.replace(/^http:/, 'https:');
 	 }
	// added by Avesh(SP) on September 06-09-2010
	m_DisplayHideObject(false);
	
	if(sFormName)
		var pars = $(sFormName).serialize();
	else
		var pars = '';
	$(sContainerId).style.display="";
	if(!sBgId)
	 sBgId='transparentdiv';
	//$(sBgId).style.display="";
	new Effect.Appear(sBgId);
	
	var loader = 'loader';
	$(sContainerId).innerHTML="<div class='"+loader+"'></div>"
	new Ajax.Updater(sContainerId,sUrl, 
					{
						method:'post',evalScripts:true, evalJS:true, parameters: pars, onComplete:function(request) 
						{ //alert(request.responseText.indexOf('action=false'));
					  		if(request.responseText.indexOf('Your Session has been expired')>=0)																																					 						   {
												window.location='index.php?action=login';																															 
																																										 							}
							if(request.responseText!="")
							{						  
							 if(setClose)
							 {
								  m_Close(sContainerId,sBgId);
							  }
							  else
							  {	
								//$(sContainerId).innerHTML = request.responseText;	
								var s1 = new Slider(document.getElementById("slider-1"), document.getElementById("slider-input-1"));
								var s2 = new Slider(document.getElementById("slider-2"), document.getElementById("slider-input-2"));
								var s3 = new Slider(document.getElementById("slider-3"), document.getElementById("slider-input-3"));
								var s4 = new Slider(document.getElementById("slider-4"), document.getElementById("slider-input-4"));
								var s5 = new Slider(document.getElementById("slider-5"), document.getElementById("slider-input-5"));
								var s6 = new Slider(document.getElementById("slider-6"), document.getElementById("slider-input-6"));
								var s10 = new Slider(document.getElementById("slider-10"), document.getElementById("slider-input-10"));
								s10.setMinimum(18);
								s10.setMaximum(54);
								
								if(document.getElementById("slider-7"))
								{
									var s7 = new Slider(document.getElementById("slider-7"), document.getElementById("slider-input-7"));	
									if(CustomFieldsMin1!='')
									s7.setMinimum(parseInt(CustomFieldsMin1));
								}
								if(document.getElementById("slider-8"))
								{
									var s8 = new Slider(document.getElementById("slider-8"), document.getElementById("slider-input-8"));
									if(CustomFieldsMin2!='')
									s8.setMinimum(parseInt(CustomFieldsMin2));
								}
								
								if(document.getElementById("slider-9"))
								{
									var s9 = new Slider(document.getElementById("slider-9"), document.getElementById("slider-input-9"));	
						            if(CustomFieldsMin3!='')
									s9.setMinimum(parseInt(CustomFieldsMin3));
								}
								s1.onchange = function () {
									document.getElementById("h-value1").value = s1.getValue();
									document.getElementById("h-min1").value = s1.getMinimum();
									document.getElementById("h-max1").value = s1.getMaximum();
									calculateScore();	
								};
								s2.onchange = function () {
									document.getElementById("h-value2").value = s2.getValue();
									document.getElementById("h-min2").value = s2.getMinimum();
									document.getElementById("h-max2").value = s2.getMaximum();
									calculateScore();	
								};
								
								s3.onchange = function () {
									document.getElementById("h-value3").value = s3.getValue();
									document.getElementById("h-min3").value = s3.getMinimum();
									document.getElementById("h-max3").value = s3.getMaximum();
									calculateScore();	
								};
								
								s4.onchange = function () {
									document.getElementById("h-value4").value = s4.getValue();
									document.getElementById("h-min4").value = s4.getMinimum();
									document.getElementById("h-max4").value = s4.getMaximum();
									calculateScore();	
								};
								
								s5.onchange = function () {
									document.getElementById("h-value5").value = s5.getValue();
									document.getElementById("h-min5").value = s5.getMinimum();
									document.getElementById("h-max5").value = s5.getMaximum();
									calculateScore();	
								};
								
								s6.onchange = function () {
									document.getElementById("h-value6").value = s6.getValue();
									document.getElementById("h-min6").value = s6.getMinimum();
									document.getElementById("h-max6").value = s6.getMaximum();
									calculateScore();	
								};
								s10.onchange = function () {
									document.getElementById("h-value10").value = s10.getValue();								
									document.getElementById("h-min10").value = s10.getMinimum();
									document.getElementById("h-max10").value = s10.getMaximum();
									calculateScore();	
								};
								if(s7)
								{
									s7.onchange = function () {
										document.getElementById("h-value7").value = s7.getValue();
										document.getElementById("h-min7").value = s7.getMinimum();
										document.getElementById("h-max7").value = s7.getMaximum();
										calculateScore();	
									};
								}
								if(s8)
								{
									s8.onchange = function () {
										document.getElementById("h-value8").value = s8.getValue();
										document.getElementById("h-min8").value = s8.getMinimum();
										document.getElementById("h-max8").value = s8.getMaximum();
										calculateScore();	
									};
								}
								if(s9)
								{
									s9.onchange = function () {
										document.getElementById("h-value9").value = s9.getValue();
										document.getElementById("h-min9").value = s9.getMinimum();
										document.getElementById("h-max9").value = s9.getMaximum();
										calculateScore();	
									};
								}
								
								scoreString   =   document.getElementById("scoreString").value;
								stuccore      =   scoreString.split(",");
								
								s1.setValue(stuccore[0]);
								s2.setValue(stuccore[1]);
								s3.setValue(stuccore[2]);
								s4.setValue(stuccore[3]);
								s5.setValue(stuccore[4]);
								s10.setValue(stuccore[5]);
								s6.setValue(stuccore[6]);
								
								if(s7)
									s7.setValue(stuccore[7]);
								if(s8)
									s8.setValue(stuccore[8]);
								if(s9)
									s9.setValue(stuccore[9]);
								
								s1.setMaximum(16);
								s2.setMaximum(18);
								s3.setMaximum(18);
								s4.setMaximum(100);
								s5.setMaximum(18);
								s6.setMaximum(18);
								if(s7)
								{  
								 	if(CustomFieldsMax1 !='')
									{
										s7.setMaximum(parseInt(CustomFieldsMax1));
									}
									else
									{
										s7.setMaximum(100);
									}
								}
								if(s8)
								{
									if(CustomFieldsMax2 !='')
									{
									  s8.setMaximum(parseInt(CustomFieldsMax2));
									}
									else
									{
									  s8.setMaximum(100);
									}
								}
								if(s9)
								{
									if(CustomFieldsMax3 !='')
									s9.setMaximum(parseInt(CustomFieldsMax3));
									else
									s9.setMaximum(100);
								}
								window.onresize = function () {
									s1.recalculate();
									s2.recalculate();
									s3.recalculate();
									s4.recalculate();
									s5.recalculate();
									s6.recalculate();
									s10.recalculate();
									if(s7)
										s7.recalculate();
									if(s8)
										s8.recalculate();
									if(s9)
										s9.recalculate();
									calculateScore();
									
									
							};
						 }
						
				}					
				else{
					alert("Some error occured processing this request. Please try after sometime.");
					$(sBgId).style.display="none";
				}					
		 }				
	});
		scrollEvent(sContainerId);
		
	return false;
}
function m_UpdateCalculatorPopup(sUrl,sContainerId,sBgId,sFormName,setClose)
{
	
	 if (location.protocol === 'https:')
	 {
    	// page is secure
		sUrl= sUrl.replace(/^http:/, 'https:');
 	 }
	// added by Avesh(SP) on September 06-09-2010
	m_DisplayHideObject(false);
	if(sFormName)
		var pars = $(sFormName).serialize();
	else
		var pars = '';
	$(sContainerId).style.display="";
	if(!sBgId)
	 sBgId='transparentdiv';
	//$(sBgId).style.display="";
	new Effect.Appear(sBgId);
	var loader = 'loader';
	$(sContainerId).innerHTML="<div class='"+loader+"'></div>"
	
	new Ajax.Request(sUrl, 
			{method:'post', parameters: pars, onComplete:function(request) 
				{	
				  
 					if(request.responseText.indexOf('Your Session has been expired')>=0)																																					                     { 
						window.location='index.php?action=login';	
						 
						}
						
					if(request.responseText!="")
					{						  
						if(setClose)
						{
						  m_Close(sContainerId,sBgId);
						}
						else
						{								  								
						  $(sContainerId).innerHTML = request.responseText;	
						}
					}					
					else
					{
						alert("Some error occured processing this request. Please try after sometime.");
						$(sBgId).style.display="none";
						
					}
		 		}					
	});	
		scrollEvent(sContainerId);
	return false;
}


/*******************************************************
Purpose		: To open a pop up
Parameters	: url, container id in which the pop up will imerge
			  and the background layout div id
Created By	: Avesh Srivastava
Created On	: 16-sep-2009
********************************************************/
function ajax_simple_post(sUrl,sContainerId,sFormName)
{
	
	if(sFormName)
		//sUrl = $(sFormName).action;
		 var pars = $(sFormName).serialize();
	else
		var pars = '';
	$('feedbackform').style.display="none";	
	
	var loader = 'loderdiv';
	$(sContainerId).innerHTML="<div class='"+loader+"'><img src='uploads/EyelineGolfBlack/loader.gif' width='66' height='66' border='0' alt='loader' align='middle'/></div>";
	
	new Ajax.Request(sUrl, 
					{
						method:'post', parameters: pars, onComplete:function(request) 
						{   
							if(request.responseText.indexOf('Your Session has been expired')>=0)																																					                             {
									window.location='index.php?action=login';																								  																																			                             }
					  if(request.responseText!=""){		
					        $('feedbackform').style.display="";	
							$(sContainerId).innerHTML = request.responseText;	
				    }					
				else{
					
					alert("Some error occured processing this request. Please try after sometime.");
					
				}
					
		 }					
	});		
	return false;
}



/*******************************************************
Purpose		: To open a pop up
Parameters	: url, container id in which the pop up will imerge
			  and the background layout div id
Created By	: Avesh Srivastava
Created On	: 16-sep-2009
********************************************************/
function ajax_simple_post_new(sUrl,sContainerId,sFormName)
{
	if(sFormName)
		var pars = $(sFormName).serialize();
	else
		var pars = null;		
	/*	
	var loader = 'loderdiv';
	$(sContainerId).innerHTML="<div class='"+loader+"'><img src='uploads/EyelineGolfBlack/loader.gif' width='66' height='66' border='0' alt='loader' align='middle'/></div>";
	
	new Ajax.Request(sUrl, 
					{
						method:'post', parameters: pars, onComplete:function(request) 
						{

					  if(request.responseText!=""){		
							$(sContainerId).innerHTML = request.responseText;	
				    }					
				else{
					alert("Some error occured processing this request. Please try after sometime.");
				}
					
		 }					
	}); */

new Ajax.Updater({ success: sContainerId},sUrl,{method:'post',evalJS:false, onLoading:function(request){pageLoading('page-box')} , onComplete:function(request){ 
																																																																										                           if(request.responseText.indexOf('Your Session has been expired')>=0)																																					                             {
									window.location='index.php?action=login';																								  																																			                             };
									pageComplete('page-box');$('page-box').style.display ='none'}});


		
	return false;
}




/*******************************************************
Purpose		: To close a pop up
Parameters	: container id in which the pop up will imerge
			  and the background layout div id
Created By	: Avesh Srivastava
Created On	: 16-sep-2009
********************************************************/
function m_Close(sContainerId,sBgId)
{
	//$(sContainerId).style.display='none';
	//$(sBgId).style.display='none';
    // Added by Avesh(SP) to Display Hidden Object 	
	m_DisplayHideObject(true);
	new Effect.Fade(sContainerId,{duration:0.8,afterFinish:function(){Effect.Fade(sBgId,{duration:1.0})}});;
	hide_dropdowns('out');
}
/*******************************************************
Purpose		: To display pop up in center 

Created By	: Gaurav(A)
Created On	: Oct-28-2009
********************************************************/

window.onscroll = setContainerToCenter;
function setContainerToCenter(){
	//scrollEvent('overlay764');
//	scrollEvent('overlay400');
	//scrollEvent('overlay673');
	//alert(window.innerHeight);
	var arDimensions;
	arDimensions = getPageSize();
	
	if($('transparentdiv1230'))
	{
		$('transparentdiv1230').style.height=arDimensions[1]+"px";
	}
	if($('transparentdiv'))
	{
		$('transparentdiv').style.height=arDimensions[1] +"px";
	}
}
function scrollEvent(idVal){
	
   if(document.getElementById(idVal)){
   var arrayPageSize = getPageSize();
   var arrayPageScroll = getPageScroll();
   document.getElementById(idVal).style.top=arrayPageScroll[1]+'px';
   if(document.getElementById(idVal)){
		document.getElementById(idVal).style.left=((getWidth()/2)-(document.getElementById(idVal).offsetWidth/2))+'px';
		document.getElementById(idVal).style.top=(arrayPageScroll[1] + (arrayPageSize[3]/3))+'px';
   }
 }   
	//setTimeout("loadDrag('overlay764');",5000); // Commented by avesh(SP) for making lightbox non draggable
}

function scrollEventVideo(idVal){
  if(document.getElementById(idVal)){
   var arrayPageSize = getPageSize();
   var arrayPageScroll = getPageScroll();
   document.getElementById(idVal).style.top=arrayPageScroll[1]+'px';
   if(document.getElementById(idVal)){
		document.getElementById(idVal).style.left=getWidth()/3.5+'px';
		document.getElementById(idVal).style.top=(arrayPageScroll[1] + (arrayPageSize[3]/3))+'px';
   }
 }   
	//setTimeout("loadDrag('overlay764');",5000); // Commented by avesh(SP) for making lightbox non draggable
}


/***********Added by avesh(SP)--start**************/   
window.onload = function (){
	var elements = [
   'overlay400'
   //'overlay673',
  // 'overlay764',  
   ];
	
	elements.each( function(itemj) {
		//loadDrag(itemj); // Commented by avesh(SP) for making lightbox non draggable
		} );
	}
	function loadDrag(itemj) {
		new Draggable(itemj,{handle:'handleId' });
	}
/***********Added by avesh(SP)--end**************/ 	
function getPageSize(){
       
        var xScroll, yScroll;
       
        if (window.innerHeight && window.scrollMaxY) { 
                xScroll = document.body.scrollWidth;
                yScroll = window.innerHeight + window.scrollMaxY;
        } else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
                xScroll = document.body.scrollWidth;
                yScroll = document.body.scrollHeight;
        } else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
                xScroll = document.body.offsetWidth;
                yScroll = document.body.offsetHeight;
        }
       
        var windowWidth, windowHeight;
        if (self.innerHeight) { // all except Explorer
                windowWidth = self.innerWidth;
                windowHeight = self.innerHeight;
        } else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
                windowWidth = document.documentElement.clientWidth;
                windowHeight = document.documentElement.clientHeight;
        } else if (document.body) { // other Explorers
                windowWidth = document.body.clientWidth;
                windowHeight = document.body.clientHeight;
        }       
       
        // for small pages with total height less then height of the viewport
        if(yScroll < windowHeight){
                pageHeight = windowHeight;
        } else {
                pageHeight = yScroll;
        }

        // for small pages with total width less then width of the viewport
        if(xScroll < windowWidth){     
                pageWidth = windowWidth;
        } else {
                pageWidth = xScroll;
        }


        arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight)
        return arrayPageSize;
}

function getPageScroll(){

        var yScroll;

        if (self.pageYOffset) {
                yScroll = self.pageYOffset;
        } else if (document.documentElement && document.documentElement.scrollTop){      // Explorer 6 Strict
                yScroll = document.documentElement.scrollTop;
        } else if (document.body) {// all other Explorers
                yScroll = document.body.scrollTop;
        }

        arrayPageScroll = new Array('',yScroll)
        return arrayPageScroll;
}
function getWidth(){
var myWidth;
var myHeight;

	if( typeof( window.innerWidth ) == 'number' ) { 
	
	//Non-IE 
	
	myWidth = window.innerWidth;
	myHeight = window.innerHeight; 
	
	} else if( document.documentElement && 
	
	( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { 
	
	//IE 6+ in 'standards compliant mode' 
	
	myWidth = document.documentElement.clientWidth; 
	myHeight = document.documentElement.clientHeight; 
	
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { 
	
	//IE 4 compatible 
	
	myWidth = document.body.clientWidth; 
	myHeight = document.body.clientHeight; 
	
	} 
	
	return myWidth;
}

function pageLoading(divId)
{
	$(divId).style.display='block';
	$(divId).style.visibility = 'visible';
	$(divId).style.visibility='visible';
	$(divId).innerHTML = '<div id="loading"><img alt="Loading..." src="uploads/EyelineGolfBlack/new_loader.gif"/>&nbsp;&nbsp;Loading...</div>';
	
}



function pageComplete(divId)
{
	$(divId).innerHTML = '';
	//$(divId).style.display='none';
	//$(divId).style.visibility = 'hidden';
}

function hide_dropdowns(what){
if(what=="in"){
var anchors = document.getElementsByTagName("select");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
anchor.style.visibility='hidden';
}
}else{
var anchors = document.getElementsByTagName("select");
for (var i=0; i<anchors.length; i++) {
var anchor = anchors[i];
anchor.style.visibility='visible';
}
}
}
/*******************************************************
Purpose		: To open a pop up
Parameters	: url, container id in which the pop up will imerge
			  and the background layout div id
Created By	:
Modified By	:
********************************************************/

function m_PlayVideo(sUrl,sContainerId,sBgId)
{		
	 if (location.protocol === 'https:')
	 {
    	// page is secure
		sUrl= sUrl.replace(/^http:/, 'https:');
 	 }
	 var pars = '';
	$(sContainerId).style.display="";
	if(!sBgId)
	 sBgId='transparentdiv';
	$(sBgId).style.display="";
	var loader = 'loader';
	$(sContainerId).innerHTML="<div class='"+loader+"'></div>"

	new Ajax.Updater(sContainerId,sUrl);
	scrollEventVideo(sContainerId);
	//Effect.ScrollTo(sContainerId,{duration:0.9})
	/*new Ajax.Request(sUrl, 
					{
						method:'post', parameters: pars, onComplete:function(request) 
						{

								
								if(request.responseText!="")
								{
									$(sContainerId).innerHTML = request.responseText;
									m_LoadFlowPlayer();
									flowplayer("player", "uploads/EyelineGolfBlack/js/flowplayer-3.1.5.swf");
								}
								else
								{
									alert("Some error occured processing this request. Please try after sometime.");
									$(sBgId).style.display="none";
								}
						}					
					});*/
	return false;
}

function m_LoadFlowPlayer()
{
(function(){function g(o){console.log("$f.fireEvent",[].slice.call(o))}function k(q){if(!q||typeof q!="object"){return q}var o=new q.constructor();for(var p in q){if(q.hasOwnProperty(p)){o[p]=k(q[p])}}return o}function m(t,q){if(!t){return}var o,p=0,r=t.length;if(r===undefined){for(o in t){if(q.call(t[o],o,t[o])===false){break}}}else{for(var s=t[0];p<r&&q.call(s,p,s)!==false;s=t[++p]){}}return t}function c(o){return document.getElementById(o)}function i(q,p,o){if(typeof p!="object"){return q}if(q&&p){m(p,function(r,s){if(!o||typeof s!="function"){q[r]=s}})}return q}function n(s){var q=s.indexOf(".");if(q!=-1){var p=s.substring(0,q)||"*";var o=s.substring(q+1,s.length);var r=[];m(document.getElementsByTagName(p),function(){if(this.className&&this.className.indexOf(o)!=-1){r.push(this)}});return r}}function f(o){o=o||window.event;if(o.preventDefault){o.stopPropagation();o.preventDefault()}else{o.returnValue=false;o.cancelBubble=true}return false}function j(q,o,p){q[o]=q[o]||[];q[o].push(p)}function e(){return"_"+(""+Math.random()).substring(2,10)}var h=function(t,r,s){var q=this;var p={};var u={};q.index=r;if(typeof t=="string"){t={url:t}}i(this,t,true);m(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var v="on"+this;if(v.indexOf("*")!=-1){v=v.substring(0,v.length-1);var w="onBefore"+v.substring(2);q[w]=function(x){j(u,w,x);return q}}q[v]=function(x){j(u,v,x);return q};if(r==-1){if(q[w]){s[w]=q[w]}if(q[v]){s[v]=q[v]}}});i(this,{onCuepoint:function(x,w){if(arguments.length==1){p.embedded=[null,x];return q}if(typeof x=="number"){x=[x]}var v=e();p[v]=[x,w];if(s.isLoaded()){s._api().fp_addCuepoints(x,r,v)}return q},update:function(w){i(q,w);if(s.isLoaded()){s._api().fp_updateClip(w,r)}var v=s.getConfig();var x=(r==-1)?v.clip:v.playlist[r];i(x,w,true)},_fireEvent:function(v,y,w,A){if(v=="onLoad"){m(p,function(B,C){if(C[0]){s._api().fp_addCuepoints(C[0],r,B)}});return false}A=A||q;if(v=="onCuepoint"){var z=p[y];if(z){return z[1].call(s,A,w)}}if(y&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(v)!=-1){i(A,y);if(y.metaData){if(!A.duration){A.duration=y.metaData.duration}else{A.fullDuration=y.metaData.duration}}}var x=true;m(u[v],function(){x=this.call(s,A,y,w)});return x}});if(t.onCuepoint){var o=t.onCuepoint;q.onCuepoint.apply(q,typeof o=="function"?[o]:o);delete t.onCuepoint}m(t,function(v,w){if(typeof w=="function"){j(u,v,w);delete t[v]}});if(r==-1){s.onCuepoint=this.onCuepoint}};var l=function(p,r,q,t){var s={};var o=this;var u=false;if(t){i(s,t)}m(r,function(v,w){if(typeof w=="function"){s[v]=w;delete r[v]}});i(this,{animate:function(y,z,x){if(!y){return o}if(typeof z=="function"){x=z;z=500}if(typeof y=="string"){var w=y;y={};y[w]=z;z=500}if(x){var v=e();s[v]=x}if(z===undefined){z=500}r=q._api().fp_animate(p,y,z,v);return o},css:function(w,x){if(x!==undefined){var v={};v[w]=x;w=v}r=q._api().fp_css(p,w);i(o,r);return o},show:function(){this.display="block";q._api().fp_showPlugin(p);return o},hide:function(){this.display="none";q._api().fp_hidePlugin(p);return o},toggle:function(){this.display=q._api().fp_togglePlugin(p);return o},fadeTo:function(y,x,w){if(typeof x=="function"){w=x;x=500}if(w){var v=e();s[v]=w}this.display=q._api().fp_fadeTo(p,y,x,v);this.opacity=y;return o},fadeIn:function(w,v){return o.fadeTo(1,w,v)},fadeOut:function(w,v){return o.fadeTo(0,w,v)},getName:function(){return p},getPlayer:function(){return q},_fireEvent:function(w,v,x){if(w=="onUpdate"){var y=q._api().fp_getPlugin(p);if(!y){return}i(o,y);delete o.methods;if(!u){m(y.methods,function(){var A=""+this;o[A]=function(){var B=[].slice.call(arguments);var C=q._api().fp_invoke(p,A,B);return C==="undefined"||C===undefined?o:C}});u=true}}var z=s[w];if(z){z.apply(o,v);if(w.substring(0,1)=="_"){delete s[w]}}}})};function b(o,t,z){var E=this,y=null,x,u,p=[],s={},B={},r,v,w,D,A,q;i(E,{id:function(){return r},isLoaded:function(){return(y!==null)},getParent:function(){return o},hide:function(F){if(F){o.style.height="0px"}if(y){y.style.height="0px"}return E},show:function(){o.style.height=q+"px";if(y){y.style.height=A+"px"}return E},isHidden:function(){return y&&parseInt(y.style.height,10)===0},load:function(F){if(!y&&E._fireEvent("onBeforeLoad")!==false){m(a,function(){this.unload()});x=o.innerHTML;if(x&&!flashembed.isSupported(t.version)){o.innerHTML=""}flashembed(o,t,{config:z});if(F){F.cached=true;j(B,"onLoad",F)}}return E},unload:function(){if(x.replace(/\s/g,"")!==""){if(E._fireEvent("onBeforeUnload")===false){return E}try{if(y){y.fp_close();E._fireEvent("onUnload")}}catch(F){}y=null;o.innerHTML=x}return E},getClip:function(F){if(F===undefined){F=D}return p[F]},getCommonClip:function(){return u},getPlaylist:function(){return p},getPlugin:function(F){var H=s[F];if(!H&&E.isLoaded()){var G=E._api().fp_getPlugin(F);if(G){H=new l(F,G,E);s[F]=H}}return H},getScreen:function(){return E.getPlugin("screen")},getControls:function(){return E.getPlugin("controls")},getConfig:function(F){return F?k(z):z},getFlashParams:function(){return t},loadPlugin:function(I,H,K,J){if(typeof K=="function"){J=K;K={}}var G=J?e():"_";E._api().fp_loadPlugin(I,H,K,G);var F={};F[G]=J;var L=new l(I,null,E,F);s[I]=L;return L},getState:function(){return y?y.fp_getState():-1},play:function(G,F){function H(){if(G!==undefined){E._api().fp_play(G,F)}else{E._api().fp_play()}}if(y){H()}else{E.load(function(){H()})}return E},getVersion:function(){var G="flowplayer.js 3.1.4";if(y){var F=y.fp_getVersion();F.push(G);return F}return G},_api:function(){if(!y){throw"Flowplayer "+E.id()+" not loaded when calling an API method"}return y},setClip:function(F){E.setPlaylist([F]);return E},getIndex:function(){return w}});m(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var F="on"+this;if(F.indexOf("*")!=-1){F=F.substring(0,F.length-1);var G="onBefore"+F.substring(2);E[G]=function(H){j(B,G,H);return E}}E[F]=function(H){j(B,F,H);return E}});m(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip,playFeed").split(","),function(){var F=this;E[F]=function(H,G){if(!y){return E}var I=null;if(H!==undefined&&G!==undefined){I=y["fp_"+F](H,G)}else{I=(H===undefined)?y["fp_"+F]():y["fp_"+F](H)}return I==="undefined"||I===undefined?E:I}});E._fireEvent=function(O){if(typeof O=="string"){O=[O]}var P=O[0],M=O[1],K=O[2],J=O[3],I=0;if(z.debug){g(O)}if(!y&&P=="onLoad"&&M=="player"){y=y||c(v);A=y.clientHeight;m(p,function(){this._fireEvent("onLoad")});m(s,function(Q,R){R._fireEvent("onUpdate")});u._fireEvent("onLoad")}if(P=="onLoad"&&M!="player"){return}if(P=="onError"){if(typeof M=="string"||(typeof M=="number"&&typeof K=="number")){M=K;K=J}}if(P=="onContextMenu"){m(z.contextMenu[M],function(Q,R){R.call(E)});return}if(P=="onPluginEvent"){var F=M.name||M;var G=s[F];if(G){G._fireEvent("onUpdate",M);G._fireEvent(K,O.slice(3))}return}if(P=="onPlaylistReplace"){p=[];var L=0;m(M,function(){p.push(new h(this,L++,E))})}if(P=="onClipAdd"){if(M.isInStream){return}M=new h(M,K,E);p.splice(K,0,M);for(I=K+1;I<p.length;I++){p[I].index++}}var N=true;if(typeof M=="number"&&M<p.length){D=M;var H=p[M];if(H){N=H._fireEvent(P,K,J)}if(!H||N!==false){N=u._fireEvent(P,K,J,H)}}m(B[P],function(){N=this.call(E,M,K);if(this.cached){B[P].splice(I,1)}if(N===false){return false}I++});return N};function C(){if($f(o)){$f(o).getParent().innerHTML="";w=$f(o).getIndex();a[w]=E}else{a.push(E);w=a.length-1}q=parseInt(o.style.height,10)||o.clientHeight;if(typeof t=="string"){t={src:t}}r=o.id||"fp"+e();v=t.id||r+"_api";t.id=v;z.playerId=r;if(typeof z=="string"){z={clip:{url:z}}}if(typeof z.clip=="string"){z.clip={url:z.clip}}z.clip=z.clip||{};if(o.getAttribute("href",2)&&!z.clip.url){z.clip.url=o.getAttribute("href",2)}u=new h(z.clip,-1,E);z.playlist=z.playlist||[z.clip];var F=0;m(z.playlist,function(){var H=this;if(typeof H=="object"&&H.length){H={url:""+H}}m(z.clip,function(I,J){if(J!==undefined&&H[I]===undefined&&typeof J!="function"){H[I]=J}});z.playlist[F]=H;H=new h(H,F,E);p.push(H);F++});m(z,function(H,I){if(typeof I=="function"){if(u[H]){u[H](I)}else{j(B,H,I)}delete z[H]}});m(z.plugins,function(H,I){if(I){s[H]=new l(H,I,E)}});if(!z.plugins||z.plugins.controls===undefined){s.controls=new l("controls",null,E)}s.canvas=new l("canvas",null,E);t.bgcolor=t.bgcolor||"#000000";t.version=t.version||[9,0];t.expressInstall="http://www.flowplayer.org/swf/expressinstall.swf";function G(H){if(!E.isLoaded()&&E._fireEvent("onBeforeClick")!==false){E.load()}return f(H)}x=o.innerHTML;if(x.replace(/\s/g,"")!==""){if(o.addEventListener){o.addEventListener("click",G,false)}else{if(o.attachEvent){o.attachEvent("onclick",G)}}}else{if(o.addEventListener){o.addEventListener("click",f,false)}E.load()}}if(typeof o=="string"){flashembed.domReady(function(){var F=c(o);if(!F){throw"Flowplayer cannot access element: "+o}else{o=F;C()}})}else{C()}}var a=[];function d(o){this.length=o.length;this.each=function(p){m(o,p)};this.size=function(){return o.length}}window.flowplayer=window.$f=function(){var p=null;var o=arguments[0];if(!arguments.length){m(a,function(){if(this.isLoaded()){p=this;return false}});return p||a[0]}if(arguments.length==1){if(typeof o=="number"){return a[o]}else{if(o=="*"){return new d(a)}m(a,function(){if(this.id()==o.id||this.id()==o||this.getParent()==o){p=this;return false}});return p}}if(arguments.length>1){var r=arguments[1];var q=(arguments.length==3)?arguments[2]:{};if(typeof o=="string"){if(o.indexOf(".")!=-1){var t=[];m(n(o),function(){t.push(new b(this,k(r),k(q)))});return new d(t)}else{var s=c(o);return new b(s!==null?s:o,r,q)}}else{if(o){return new b(o,r,q)}}}return null};i(window.$f,{fireEvent:function(){var o=[].slice.call(arguments);var q=$f(o[0]);return q?q._fireEvent(o.slice(1)):null},addPlugin:function(o,p){b.prototype[o]=p;return $f},each:m,extend:i});if(typeof jQuery=="function"){jQuery.prototype.flowplayer=function(q,p){if(!arguments.length||typeof arguments[0]=="number"){var o=[];this.each(function(){var r=$f(this);if(r){o.push(r)}});return arguments.length?o[arguments[0]]:new d(o)}return this.each(function(){$f(this,k(q),p?k(p):{})})}}})();(function(){var e=typeof jQuery=="function";var i={width:"100%",height:"100%",allowfullscreen:true,allowscriptaccess:"always",quality:"high",version:null,onFail:null,expressInstall:null,w3c:false,cachebusting:false};if(e){jQuery.tools=jQuery.tools||{};jQuery.tools.flashembed={version:"1.0.4",conf:i}}function j(){if(c.done){return false}var l=document;if(l&&l.getElementsByTagName&&l.getElementById&&l.body){clearInterval(c.timer);c.timer=null;for(var k=0;k<c.ready.length;k++){c.ready[k].call()}c.ready=null;c.done=true}}var c=e?jQuery:function(k){if(c.done){return k()}if(c.timer){c.ready.push(k)}else{c.ready=[k];c.timer=setInterval(j,13)}};function f(l,k){if(k){for(key in k){if(k.hasOwnProperty(key)){l[key]=k[key]}}}return l}function g(k){switch(h(k)){case"string":k=k.replace(new RegExp('(["\\\\])',"g"),"\\$1");k=k.replace(/^\s?(\d+)%/,"$1pct");return'"'+k+'"';case"array":return"["+b(k,function(n){return g(n)}).join(",")+"]";case"function":return'"function()"';case"object":var l=[];for(var m in k){if(k.hasOwnProperty(m)){l.push('"'+m+'":'+g(k[m]))}}return"{"+l.join(",")+"}"}return String(k).replace(/\s/g," ").replace(/\'/g,'"')}function h(l){if(l===null||l===undefined){return false}var k=typeof l;return(k=="object"&&l.push)?"array":k}if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}function b(k,n){var m=[];for(var l in k){if(k.hasOwnProperty(l)){m[l]=n(k[l])}}return m}function a(r,t){var q=f({},r);var s=document.all;var n='<object wmode="transparent" width="'+q.width+'" height="'+q.height+'"';if(s&&!q.id){q.id="_"+(""+Math.random()).substring(9)}if(q.id){n+=' id="'+q.id+'"'}if(q.cachebusting){q.src+=((q.src.indexOf("?")!=-1?"&":"?")+Math.random())}if(q.w3c||!s){n+=' data="'+q.src+'" type="application/x-shockwave-flash"'}else{n+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'}n+=">";if(q.w3c||s){n+='<param name="movie" value="'+q.src+'" />'}q.width=q.height=q.id=q.w3c=q.src=null;for(var l in q){if(q[l]!==null){n+='<param name="'+l+'" value="'+q[l]+'" />'}}var o="";if(t){for(var m in t){if(t[m]!==null){o+=m+"="+(typeof t[m]=="object"?g(t[m]):t[m])+"&"}}o=o.substring(0,o.length-1);n+='<param name="flashvars" value=\''+o+"' />"}n+="</object>";return n}function d(m,p,l){var k=flashembed.getVersion();f(this,{getContainer:function(){return m},getConf:function(){return p},getVersion:function(){return k},getFlashvars:function(){return l},getApi:function(){return m.firstChild},getHTML:function(){return a(p,l)}});var q=p.version;var r=p.expressInstall;var o=!q||flashembed.isSupported(q);if(o){p.onFail=p.version=p.expressInstall=null;m.innerHTML=a(p,l)}else{if(q&&r&&flashembed.isSupported([6,65])){f(p,{src:r});l={MMredirectURL:location.href,MMplayerType:"PlugIn",MMdoctitle:document.title};m.innerHTML=a(p,l)}else{if(m.innerHTML.replace(/\s/g,"")!==""){}else{m.innerHTML="<h2>Flash version "+q+" or greater is required</h2><h3>"+(k[0]>0?"Your version is "+k:"You have no flash plugin installed")+"</h3>"+(m.tagName=="A"?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='http://www.adobe.com/go/getflashplayer'>here</a></p>");if(m.tagName=="A"){m.onclick=function(){location.href="http://www.adobe.com/go/getflashplayer"}}}}}if(!o&&p.onFail){var n=p.onFail.call(this);if(typeof n=="string"){m.innerHTML=n}}if(document.all){window[p.id]=document.getElementById(p.id)}}window.flashembed=function(l,m,k){if(typeof l=="string"){var n=document.getElementById(l);if(n){l=n}else{c(function(){flashembed(l,m,k)});return}}if(!l){return}if(typeof m=="string"){m={src:m}}var o=f({},i);f(o,m);return new d(l,o,k)};f(window.flashembed,{getVersion:function(){var m=[0,0];if(navigator.plugins&&typeof navigator.plugins["Shockwave Flash"]=="object"){var l=navigator.plugins["Shockwave Flash"].description;if(typeof l!="undefined"){l=l.replace(/^.*\s+(\S+\s+\S+$)/,"$1");var n=parseInt(l.replace(/^(.*)\..*$/,"$1"),10);var r=/r/.test(l)?parseInt(l.replace(/^.*r(.*)$/,"$1"),10):0;m=[n,r]}}else{if(window.ActiveXObject){try{var p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(q){try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");m=[6,0];p.AllowScriptAccess="always"}catch(k){if(m[0]==6){return m}}try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(o){}}if(typeof p=="object"){l=p.GetVariable("$version");if(typeof l!="undefined"){l=l.replace(/^\S+\s+(.*)$/,"$1").split(",");m=[parseInt(l[0],10),parseInt(l[2],10)]}}}}return m},isSupported:function(k){var m=flashembed.getVersion();var l=(m[0]>k[0])||(m[0]==k[0]&&m[1]>=k[1]);return l},domReady:c,asString:g,getHTML:a});if(e){jQuery.fn.flashembed=function(l,k){var m=null;this.each(function(){m=flashembed(this,l,k)});return l.api===false?this:m}}})();	


}

/*************************************************************************************************
Purpose		: To proper working of slider in my gole popup
Parameters	: flag for every slider (1-9 ), value of the text box on which slider should be placed.
Created By	: Prashant Shukla on Dec/16/2009
Modified By	: Prashant Shukla on Dec/15/2009
*************************************************************************************************/
function slideAutoSet(iFlag,iSliderValue)
{		
		switch(parseInt(iFlag))
		{
			case 1:
				document.getElementById('slider-1').innerHTML="<input class=\"slider-input\" id=\"slider-input-1\">";
				var s1 = new Slider(document.getElementById("slider-1"), document.getElementById("slider-input-1"));
				s1.setValue(parseInt(iSliderValue));
				s1.setMaximum(16); // 14 Modified by Avesh(SP)
				s1.onchange = function () {
					document.getElementById("h-value1").value = s1.getValue();
					document.getElementById("h-min1").value = s1.getMinimum();
					document.getElementById("h-max1").value = s1.getMaximum();
					calculateScore();	
				};
				break;
			
			case 2:
				document.getElementById('slider-2').innerHTML="<input class=\"slider-input\" id=\"slider-input-2\">";
				var s2 = new Slider(document.getElementById("slider-2"), document.getElementById("slider-input-2"));
				s2.setValue(parseInt(iSliderValue));
				s2.setMaximum(18);
				s2.onchange = function () {
					document.getElementById("h-value2").value = s2.getValue();
					document.getElementById("h-min2").value = s2.getMinimum();
					document.getElementById("h-max2").value = s2.getMaximum();
					calculateScore();	
				};
				break;
			
			case 3:
				document.getElementById('slider-3').innerHTML="<input class=\"slider-input\" id=\"slider-input-3\">";
				var s3 = new Slider(document.getElementById("slider-3"), document.getElementById("slider-input-3"));
				s3.setValue(parseInt(iSliderValue));
				s3.setMaximum(18);
				s3.onchange = function () {
					document.getElementById("h-value3").value = s3.getValue();
					document.getElementById("h-min3").value = s3.getMinimum();
					document.getElementById("h-max3").value = s3.getMaximum();
					calculateScore();	
				};
				break;
			
			case 4:
				document.getElementById('slider-4').innerHTML="<input class=\"slider-input\" id=\"slider-input-4\">";
				var s4 = new Slider(document.getElementById("slider-4"), document.getElementById("slider-input-4"));
				s4.setValue(parseInt(iSliderValue));
				s4.setMaximum(100);
				s4.onchange = function () {
					document.getElementById("h-value4").value = s4.getValue();
					document.getElementById("h-min4").value = s4.getMinimum();
					document.getElementById("h-max4").value = s4.getMaximum();
					calculateScore();	
				};
				break;
			
			case 5:
				document.getElementById('slider-5').innerHTML="<input class=\"slider-input\" id=\"slider-input-5\">";
				var s5 = new Slider(document.getElementById("slider-5"), document.getElementById("slider-input-5"));
				s5.setValue(parseInt(iSliderValue));
				s5.setMaximum(18);
				s5.onchange = function () {
					document.getElementById("h-value5").value = s5.getValue();
					document.getElementById("h-min5").value = s5.getMinimum();
					document.getElementById("h-max5").value = s5.getMaximum();
					calculateScore();	
				};
				break;
			
			case 6:
				document.getElementById('slider-6').innerHTML="<input class=\"slider-input\" id=\"slider-input-6\">";
				var s6 = new Slider(document.getElementById("slider-6"), document.getElementById("slider-input-6"));
				s6.setValue(parseInt(iSliderValue));
				s6.setMaximum(18);
				s6.onchange = function () {
					document.getElementById("h-value6").value = s6.getValue();
					document.getElementById("h-min6").value = s6.getMinimum();
					document.getElementById("h-max6").value = s6.getMaximum();
					calculateScore();	
				};
				break;
			
			case 7:
			
				document.getElementById('slider-7').innerHTML="<input class=\"slider-input\" id=\"slider-input-7\">";
				var s7 = new Slider(document.getElementById("slider-7"), document.getElementById("slider-input-7"));
				s7.setValue(parseInt(iSliderValue));
				s7.setMaximum(100);
				s7.onchange = function () {
					document.getElementById("h-value7").value = s7.getValue();
					document.getElementById("h-min7").value = s7.getMinimum();
					document.getElementById("h-max7").value = s7.getMaximum();
					calculateScore();	
				};
				break;
				
			case 8:
				document.getElementById('slider-8').innerHTML="<input class=\"slider-input\" id=\"slider-input-8\">";
				var s8 = new Slider(document.getElementById("slider-8"), document.getElementById("slider-input-8"));
				s8.setValue(parseInt(iSliderValue));
				s8.setMaximum(100);
				s8.onchange = function () {
					document.getElementById("h-value8").value = s8.getValue();
					document.getElementById("h-min8").value = s8.getMinimum();
					document.getElementById("h-max8").value = s8.getMaximum();
					calculateScore();	
				};
				break;	
			
			case 9:
				document.getElementById('slider-9').innerHTML="<input class=\"slider-input\" id=\"slider-input-9\">";
				var s9 = new Slider(document.getElementById("slider-9"), document.getElementById("slider-input-9"));
				s9.setValue(parseInt(iSliderValue));
				s9.setMaximum(100);
				s9.onchange = function () {
					document.getElementById("h-value9").value = s9.getValue();
					document.getElementById("h-min9").value = s9.getMinimum();
					document.getElementById("h-max9").value = s9.getMaximum();
					calculateScore();	
				};
				break;
			
		}calculateScore();
}

