function writeFlash(season){
	var movieLocation = 'client/flash/'+season+'.swf';
	switch(season){
		case 'autumn': width=800; height=330; break;
		case 'winter': width=800; height=280; break;
		case 'spring': width=800; height=350; break;
		case 'summer': width=800; height=314; break;
	}
	document.write('<object id="flashmast" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name="allowScriptAccess" value="sameDomain"><param name="movie" value="'+movieLocation+'"><param name="quality" value="high"><embed id="flashembed" src="'+movieLocation+'" quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'"></embed></object>');
}
function writeFlash2(movieLocation,width,height,url){
  document.write('<object id="flashmast" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name="allowScriptAccess" value="sameDomain"><param name="movie" value="'+movieLocation+'"><param name="quality" value="high"><param name="wmode" value="transparent"><embed id="flashembed" src="'+movieLocation+'" quality="high" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'"></embed></object>');
}

function handleGallery(id, w, h){
	newID = id;
	newWidth = w;
	newHeight = h;
	document.getElementById('bigPhotoUrl').src='get.php?i.'+id+':w.380:h.300';
}
function popupProductGallery(url){
	openCenteredWindow(url+'index.php?print=3&pid='+pID+'&fid='+newID+'', 'print_view', 800, 600, true, true, 'resizable=no', '');
}
function handleGallery2(id, w, h){
	newID = id;
	newWidth = w;
	newHeight = h;
	document.getElementById('bigPhotoUrl2').src='get.php?i.'+id+':w.726:h.460';
}
function handleGallery3(id, w, h){
	newID = id;
	newWidth = w;
	newHeight = h;
	document.getElementById('bigPhotoUrl').src='get.php?i.'+id+':w.280:h.300';
}

var spd = 80;
var tim;
var jump = 12;
function jump_left(){
	right = document.getElementById('news_scrollable').offsetWidth - document.getElementById('news_scroll_box').offsetWidth;
	
	posn=parseInt(document.getElementById("news_scrollable").style.marginLeft);
	if(posn >= 0){
		no_scroll();
		return true;
	}
	document.getElementById("news_scrollable").style.marginLeft = (posn+jump)+'px';
	tim = setTimeout("jump_left()", spd);
}
function jump_right(){
	right = document.getElementById('news_scrollable').offsetWidth - document.getElementById('news_scroll_box').offsetWidth;

	posn=parseInt(document.getElementById("news_scrollable").style.marginLeft);
	if(posn*(-1) >= right){
		clearTimeout(tim);
		return true;
	}
	document.getElementById("news_scrollable").style.marginLeft = (posn-jump)+'px';
	tim = setTimeout("jump_right()", spd);
}
function no_scroll(){
	clearTimeout(tim);
}
