function startMovie(){
	
	x=screen.availWidth;
	y=screen.availHeight;

	target = parseFloat(navigator.appVersion.substring(navigator.appVersion.indexOf('.')-1,navigator.appVersion.length));
	
	if((navigator.appVersion.indexOf("Mac")!=-1) &&(navigator.userAgent.indexOf("MSIE")!=-1) &&(parseInt(navigator.appVersion)==4))
		window.open("asher.cfm","sub",'scrollbars=yes');
	
	if (target >= 4){
		if (navigator.appName=="Netscape"){
		    var MachakFull=window.open("asher.cfm","asher",'scrollbars=yes','width='+x+',height='+y+',top=0,left=0');
			MachakFull.moveTo(0,0);
			MachakFull.resizeTo(x,y);
		}
		if (navigator.appName=="Microsoft Internet Explorer")
			window.open("asher.cfm","asher","fullscreen=yes");
		}
	else window.open("asher.cfm","sub",'scrollbars=yes');

}

function storeLocator(xString){
	window.open("storelocator.cfm?"+xString, "storelocator", "height=400,width=200,scrollbars=yes");
}

// -------------------------------------------------------------------- //

var ie = document.all ? 1 : 0
var ns = document.layers ? 1 : 0

if(ns){
	doc = "document.";
	sty = "";
}

if(ie){
	doc = "document.all.";
	sty = ".style";
}

var initialize = 0
var Ex, Ey, topColor, subColor, ContentInfo

if(ie){
	Ex = "event.x";
	Ey = "event.y";
}

if(ns){
	Ex = "e.pageX";
	Ey = "e.pageY";
	window.captureEvents(Event.MOUSEMOVE);
	window.onmousemove=overhere;	
}

function MoveDiv(layerName, FromTop, FromLeft){
	xPos = eval(FromLeft) + 15;
	xPos = 23;
	yPos = eval(FromTop) - 125;
	if(ie){
		eval(doc + layerName + sty + ".top = "  + (eval(yPos) + document.body.scrollTop))
	}
	if(ns){
		eval(doc + layerName + sty + ".top = "  +  eval(yPos))
	}
	eval(doc + layerName + sty + ".left = " + eval(xPos))
}

function ReplaceContent(layerName){
	if(ie){
		document.all[layerName].innerHTML = ContentInfo;
	}

	if(ns){
		with(document.layers[layerName].document) 
		{ 
		   open(); 
		   write(ContentInfo); 
		   close(); 
		}
	}
}

function Activate(){
	initialize=1
}

function deActivate(){
	initialize=0
}

function overhere(e){
	
	if(initialize){
		MoveDiv("clipWindow", Ey, Ex, e);
		eval(doc + "clipWindow" + sty + ".visibility = 'visible'");
	} else{
		MoveDiv("clipWindow", 0, 0);
		eval(doc + "clipWindow" + sty + ".visibility = 'hidden'");
	}
	
}

function EnterImage(layerName, TImage, TableWidth, TableHeight){
	
	xWidth = TableWidth + 2;
	xHeight = TableHeight + 2;
	
	ContentInfo = ''+
	
	'<table border="0" width="'+xWidth+'" height="'+xHeight+'" cellspacing="0" cellpadding="0">'+
		
		'<tr>'+
			
			'<td width="100%" height="100%" bgcolor="#C0C0C0" style="filter:alpha(opacity=100);">'+
				
				'<table border="0" width="100%" height="100%" cellspacing="1" cellpadding="0">'+
					
					'<tr>'+
						
						'<td width="100%">'+
							
							'<table border="0" width="100%" cellspacing="0" cellpadding="0" align="center">'+
								
								'<tr>'+
									
									'<td width="100%" style=" filter:alpha(opacity=100);">'+
										'<img src="'+TImage+'" border="0"><br>'+
									'</td>'+
									
								'</tr>'+
								
							'</table>'+	
					
						'</td>'+
						
					'</tr>'+
					
				'</table>'+

			'</td>'+
			
		'</tr>'+
		
	'</table>';
				
	ReplaceContent(layerName)

}