 
 
 function  SetLeftDiv(obj,left) //Function to set divs left
	{
 
		var offset;
		offset=parseInt(document.body.offsetWidth);
	  
		if(offset<=800)
		{ 
			obj.style.left=left;
		}
		else 
		{
			//alert(document.body.clientWidth);
			//alert(screen.availHeight);	
			offset=(parseInt(document.body.clientWidth/2) - 300) + left;
			obj.style.left=offset + 'px';
		}
		if(obj.offsetHeight != 0)
		{
			obj.style.top = (156 + 190 - (obj.offsetHeight/2) )  + "px";
		}
		else if(obj.clientHeight != 0)
		{
			obj.style.top = (156 + 150 - (obj.clientHeight/2) )  + "px";
		}
		else
		{
			obj.style.top = (156 + 190 - 95)  + "px";
		}			
		return false;
	} 		
	
			
 function  SetDivHeight(obj,top)
    {
 	
 	obj.top = (parseInt(document.getElementById("MainDiv").offsetHeight) - top) + "px";

	}	

function check_date(field)
{ 
	var checkstr = "0123456789";
	var DateField =document.getElementById(field);
	var Datevalue = "";
	var DateTemp = "";
	var seperator = "/";
	var day;
	var month;
	var year;
	var leap = 0;
	var err = 0;
	var i;
	var dateArray=new Array();
	err = 0;
	
	DateValue = DateField.value;
	dateArray=DateValue.split(seperator)
	
	
	/* Delete all chars except 0..9 */
	for (i = 0; i < DateValue.length; i++) 
	{
		if (checkstr.indexOf(DateValue.substring(i,1)) >= 0) 
		{
			DateTemp = DateTemp + DateValue.substring(i,1);
		}
	}
	
	DateValue = DateTemp;
	/* Always change date to 8 digits - string*/
	/* if year is entered as 2-digit / always assume 20xx */
	
	if (DateValue.length == 6) 
	{
		DateValue = DateValue.substring(0,4) + '20' + DateValue.substring(4,2); 
	}
	if (DateValue.length == 7) 
	{
		DateValue = '0' + DateValue; 
	}
	if (DateValue.length != 8) 
	{
		err = 19;
	}
	
	/* year is wrong if year = 0000 */
	
	year = DateValue.substring(4,4);
	
	if (year == 0) 
	{
		err = 20;
	}
	/* Validation of month*/
	month =  DateValue.substring(0,2);
	
	if ((month < 1) || (month > 12)) 
	{
		err = 21;
	}
	/* Validation of day*/
	day =DateValue.substring(2,2);
	
	if (day < 1) 
	{
		err = 22;
	}
	/* Validation leap-year / february / day */
	if ((year % 4 == 0) || (year % 100 == 0) || (year % 400 == 0)) 
	{
		leap = 1;
	}
	if ((month == 2) && (leap == 1) && (day > 29)) 
	{
		err = 23;
	}
	if ((month == 2) && (leap != 1) && (day > 28)) 
	{
		err = 24;
	}
	/* Validation of other months */
	if ((day > 31) && ((month == "01") || (month == "03") || (month == "05") || (month == "07") || (month == "08") || (month == "10") || (month == "12")))
	{
		err = 25;
	}
	if ((day > 30) && ((month == "04") || (month == "06") || (month == "09") || (month == "11"))) 
	{
		err = 26;
	}
	/* if 00 ist entered, no error, deleting the entry */
	if ((day == 0) && (month == 0) && (year == 00)) 
	{
		err = 0; day = ""; month = ""; year = ""; seperator = "";
	}
	/* if no error, write the completed date to Input-Field (e.g. 13.12.2001) */
	if (err == 0) 
	{
		DateField.value = month + seperator + day + seperator + year;
	}
	/* Error-message if err != 0 */
	else 
	{
		return false;
		DateField.select();
		DateField.focus();
	}
}

function URL()
			{
			   
				var URLstr=window.location.href;
				if(URLstr.indexOf('Appointment.aspx')>-1)
				{document.getElementById('imgAppoint').src = '../images/btn_appointment_o.gif';} 
				else if(URLstr.indexOf('FabricSelect.aspx')>-1)
				{document.getElementById('imgProducts').src ='../images/btn_prod_o.gif';} 
				else if(URLstr.indexOf('Referral.aspx')>-1)
				{document.getElementById('imgReferrals').src ='../images/btn_referral_o.gif';}
				else if(URLstr.indexOf('GiftCardsAll.aspx')>-1)
				{document.getElementById('imgGiftCards').src ='../images/btn_giftcard_o.gif';}  
				
			}
			
function formatCurrency(obj)
{       
		var num,cents;
		num=obj.toString().replace(',','');
		num = num.toString().replace(/\$|\,/g,'');
		if(isNaN(num))
				num = "0";							
				num = Math.floor(num*100+0.50000000001);				
				{cents = num%100;}				
				num = Math.floor(num/100).toString();				
		if(cents<10)
				cents = "0" + cents;
				for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
				num = num.substring(0,num.length-(4*i+3))+','+
				num.substring(num.length-(4*i+3));
				return( num + '.' + cents);

}	

	function Getdoublevalue(obj)
	    {
	      return (obj.replace(',',''));
	    }					   
					
