	//// code added by sandip
	// to show Contact us page 
	// Date : 11-may,2006
	var Vflag=false ;
	
	// to show contact us window
	function contactus(PName)
	{	
		/*
		if (Vflag==true)
			document.getElementById('divContactUs').style.display = "none";
		
		var html;
		
		html=" <DIV id='divContactUs'   ms_positioning='FlowLayout'>"
		html+="<IFRAME id='ifmContactUs' style='BORDER-RIGHT: #f4ae70 2px solid; BORDER-TOP: #f4ae70 2px solid; Z-INDEX: 104; LEFT: 120px; BORDER-LEFT: #f4ae70 2px solid; WIDTH: 500px; BORDER-BOTTOM: #f4ae70 2px solid; POSITION: absolute; TOP: 80px; HEIGHT: 355px' "
		html+="name='ifmContactUs'   src='" + PName + "'  frameBorder='0' width='100%' scrolling='no' height='100%'> "
		html+="</IFRAME></div>" ;
		
		document.body.insertAdjacentHTML("afterBegin", html);			
		Vflag=true;
		*/
		
		document.getElementById("divContactUs").style.visibility="visible"  ;
		document.getElementById("ifmContactUs").src=PName;
	}
	
	// to hide contact us window 
	function hidecontactus()
	{
	//		if (Vflag==true)
	//		document.getElementById('divContactUs').style.display = "none";
			document.getElementById("divContactUs").style.visibility="hidden"  ;
			
	//		Vflag=false;
	}
	
	///End Code  sandip
	
	
	
	//// code added by sandip
	// to show login page of dealer  page 
	// Date : 23-may,2006
	var Dflag=false ;
	
	// to show contact us window
	function dealerlogin(PName, Width, Height,left,top)
	{	

		/*
		if (Dflag==true)
			document.getElementById('DealerLogin').style.display = "none";
		
		var html;
		
		html=" <DIV id='DealerLogin'   ms_positioning='FlowLayout'>"
		html+="<IFRAME id='ifmDealerLogin' style='BORDER-RIGHT: #f4ae70 2px solid; BORDER-TOP: #f4ae70 2px solid; Z-INDEX: 104; LEFT:" + left + "px ; BORDER-LEFT: #f4ae70 2px solid; WIDTH: " + Width + "px; BORDER-BOTTOM: #f4ae70 2px solid; POSITION: absolute; TOP: " + top + "px; HEIGHT: " + Height + "px ' "
		html+="name='ifmifmDealerLogin'   src='" + PName + "'  frameBorder='0' width='100%' scrolling='no' height='100%'> "
		html+="</IFRAME></div>" ;
		
		document.body.insertAdjacentHTML("afterBegin", html);			
		Dflag=true;
		*/
	
	
		document.getElementById("DealerLogin").style.visibility="visible"  ;
		document.getElementById("ifmDealerLogin").src=PName;
		
		document.getElementById("ifmDealerLogin").style.width=Width;
		document.getElementById("ifmDealerLogin").style.height=Height;
		document.getElementById("ifmDealerLogin").style.left=left;
		document.getElementById("ifmDealerLogin").style.top=top;

	}
	
	// to hide contact us window 
	function hidedealerlogin()
	{
//		if (Dflag==true)
		//	document.getElementById('DealerLogin').style.display = "none";
				document.getElementById("DealerLogin").style.visibility="hidden"  ;
			
	//		Dflag=false;
	}
	
	
	function setparentdealerlogin(Width, Height,left,top)
	{
		var dealer=	window.top.document.getElementById('ifmDealerLogin')
		
		dealer.style.height =Height;
		dealer.style.width=Width;
		dealer.style.top=top;
		dealer.style.left=left;
		Dflag=true;
	}

	
	///End Code  sandip