fileName = location.pathname.substring(location.pathname.lastIndexOf('/')+1);


if (fileName == 'main.php')
{
}
else if (fileName == 'freebies.php')
{
	window.resizeTo(331,705);
}
else if (fileName == 'news_popup.php')
{
	//window.resizeTo(290,510);
}
else
{
	window.resizeTo(330,660);
}


function showLink(url, width, height)
{
	win = window.open(url,"links", "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=" + width +",height=" + height +",left=" + (screen.width-width)/2 + ",top=" + (screen.height-height)/2);
	win.focus();
}

function showLink2(url, width, height)
{
	win = window.open(url,"links2", "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=" + width +",height=" + height +",left=" + (screen.width-width)/2 + ",top=" + (screen.height-height)/2);
	win.focus();
}

function shopItem(url, width, height)
{
	win = window.open(url,"shop", "toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=" + width +",height=" + height +",left=" + (screen.width-width)/2 + ",top=" + (screen.height-height)/2);
	win.focus();
}

function showPicture(id, width, height)
{
	x = window.open("show_photo.php?id=" + id, "photo", "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=no,width=" + width +",height=" + height +",left=" + (screen.width-width)/2 + ",top=" + (screen.height-height)/2);
	x.focus();
}


function showWallpaper(id)
{
	x = window.open("show_wallpaper.php?id=" + id, "wallpaper", "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=" + screen.width + ",height=" + screen.height + ",left=0,top=0");
	x.focus();
}

/// SCROLLING


defaultSpeed = 80;
defaultScroll = 20;


/*****************************************************************************
Keep this comment to reuse freely

Based on the Auto Looping Scrolling Layers script (http://www.unitedscripters.com)
Modified by: Alexander Cicovic (http://www.alexcicovic.com)

I was searching for a script that would scroll layers.  I found and liked the
Auto Looping Scrolling Layers script given in http://www.unitedscripters.com
The only problem was that I did not want it to loop endlessly, just stop at the
starting and ending points of the div.  So I took it and modified it slightly.

It works exactly the same way with the other script.  The only exception is the
currentCycles property which does not exist anymore.

You can use this script freely as long as you keep all notices intact,
including this one.
*****************************************************************************/




function emptyShell(variableName)
{
	this.variableName=variableName;
	this.variable=this;
	this.enable=function()
	{
		for(var e=0;e<this.enable.arguments.length;e++)
		{
			if(typeof(this.enable.arguments[e])=="object" )
			{
				for(var ee=0;ee<this.enable.arguments[e].length;ee++)
				{
					this[this.enable.arguments[e][ee]]=new shellGuest(this.variableName, this.enable.arguments[e][ee])
				}
			}
			else
			{
				this[this.enable.arguments[e]]=new shellGuest(this.variableName, this.enable.arguments[e]);
			}
		}
	}
	this.timer=false;
	this.abilitate=function(){return;};/*to avoid bad error if mistaken after ULMA emulation compliance*/
}




function shellGuest(variableName, methodName)
{
	this.variableName=this.managerName=variableName;
	this.owner = this.manager = this.variable= eval(variableName);
	this.methodName= methodName;
	this.exec= this.exe= this.ex= this.x= this.X= this.e= this.execute= eval(methodName);
	this.isRunning=0; this.isTimed=0;


	this.run=function(arg)
	{
		arg=(arg)?arg:'';
		var runner= this.variableName+ "."+ this.methodName+ ".execute("+arg+")";
		this.timer=setInterval(runner, ( (parseFloat(this.variable.speed))?parseFloat(this.variable.speed):parseFloat(this.speed) ) );
	}


	this.timedRun=function(arg)
	{
		arg=(arg)?arg:''; var runner= this.managerName+ "."+ this.methodName+ ".execute("+arg+")";
		this.isTimed=1;
		this.timer=setTimeout(runner,( (parseFloat(this.variable.speed))?parseFloat(this.variable.speed):parseFloat(this.speed) ));
	}


	this.stop=function()
	{
		if(!this.isTimed)
		{
			clearInterval( this.timer );
		}
		else
		{
			clearTimeout(this.timer);
			this.isTimed=0;
		}
		this.isRunning=0;
	}


	this.setAttributes=function()
	{
		if(!this.setAttributes.arguments.length)
		{
			return;
		}
		if(this.setAttributes.arguments.length>=2)
		{
			for(var A=0; A< (this.setAttributes.arguments.length-1); A+=2)
			{
				this[this.setAttributes.arguments[A]] = this.setAttributes.arguments[A+1];
			}
		}
		else
		{
			if( typeof(this.setAttributes.arguments[0]) == "object" && this.setAttributes.arguments[0].length>=2)
			{
				for(var L=0; L< (this.setAttributes.arguments[0].length-1); L+=2)
				{
					this[this.setAttributes.arguments[0][L]] = this.setAttributes.arguments[0][L+1];
				}
			}
		}
	}
	this.setAttribute= this.setattribute= this.setattributes= this.attributes= this.set= this.setAttributes;
}




function scrollUp()  // scroll up
{
	if(!this.isRunning)
	{
		this.isRunning=1;
		var bareObject=(document.getElementById)? document.getElementById(this.variableName):
		(document.all)?document.all[this.variableName]:0;
		if(!bareObject)
		{
			this.isRunning=0;
			return false;
		}
		this.bareObject=bareObject;
		this.object=(this.bareObject)?this.bareObject.style:0;
		this.owner.lastCalled=this.methodName;
		this.reset=function(){this.object.top=0; this.object.left=0;}
		this.speed=(!isNaN(parseFloat(this.speed)))? parseFloat(this.speed):200;
		this.scroll=(!isNaN(parseFloat(this.scroll)))?parseFloat(this.scroll):1;
		this.increaser=parseFloat(this.object.top);
	}

		this.increaser+=this.scroll;
		if(this.increaser>0)
		{
			return false;
		}
		//RUN:
		this.object.top=this.increaser;

		/*********************************************************************************
		Keep this comment to reuse freely
		Based on the Auto Looping Scrolling Layers script (http://www.unitedscripters.com)
		Modified by: Alexander Cicovic (http://www.alexcicovic.com)
		**********************************************************************************/
}




function scrollDown() // scroll down
{
	if(!this.isRunning)
	{
		this.isRunning=1;
		var bareObject=(document.getElementById)? document.getElementById(this.variableName):
		(document.all)?document.all[this.variableName]:0;
		if(!bareObject)
		{
			this.isRunning=0;
			return false;
		}
		this.bareObject=bareObject;
		this.object=(this.bareObject)?this.bareObject.style:0;
		this.owner.lastCalled=this.methodName;
		this.reset=function(){this.object.top=0; this.object.left=0;}
		this.speed=(!isNaN(parseFloat(this.speed)))? parseFloat(this.speed):200;
		this.scroll=(!isNaN(parseFloat(this.scroll)))?parseFloat(this.scroll):1;
		this.increaser=parseFloat(this.object.top);
	}
	//RUN:
	this.increaser-=this.scroll;

	if (this.bareObject.offsetHeight < this.bareObject.parentNode.offsetHeight)
	{
		return false;
	}
	else
	{
		if(this.increaser< parseFloat(this.bareObject.parentNode.offsetHeight-this.bareObject.offsetHeight))
		{
			return false;
		}
	}

	this.object.top=this.increaser;
}


function scrollLeft() // scroll left
{
	if(!this.isRunning)
	{
		this.isRunning=1;
		var bareObject=(document.getElementById)? document.getElementById(this.variableName):
		(document.all)?document.all[this.variableName]:0;
		if(!bareObject)
		{
			this.isRunning=0;
			return false;
		}
		this.bareObject=bareObject;
		this.object=(this.bareObject)?this.bareObject.style:0;
		this.owner.lastCalled=this.methodName;
		this.reset=function()
		{
			this.object.top=0;
			this.object.left=0;
		}
		this.speed=(!isNaN(parseFloat(this.speed)))? parseFloat(this.speed):200;
		this.scroll=(!isNaN(parseFloat(this.scroll)))?parseFloat(this.scroll):1;
		this.increaser=parseFloat(this.object.left);
	}

	//RUN:
	this.increaser+=this.scroll;
	if(this.increaser>0)
	{
		return false;
	}
	this.object.left=this.increaser;
}





function scrollRight() // scroll right
{
	if(!this.isRunning)
	{
		this.isRunning=1;
		var bareObject=(document.getElementById)? document.getElementById(this.variableName):
		(document.all)?document.all[this.variableName]:0;
			if(!bareObject)
			{
				this.isRunning=0;
				return false;
			}
		this.bareObject=bareObject;
		this.object=(this.bareObject)?this.bareObject.style:0;
		this.owner.lastCalled=this.methodName;
		this.reset=function(){this.object.top=0; this.object.left=0;}
		this.speed=(!isNaN(parseFloat(this.speed)))? parseFloat(this.speed):200;
		this.scroll=(!isNaN(parseFloat(this.scroll)))?parseFloat(this.scroll):1;
		this.increaser=parseFloat(this.object.left);
	}
	//RUN:
	this.increaser-=this.scroll;
	if(this.increaser<-(parseFloat(this.object.width)-this.bareObject.parentNode.offsetWidth))
	{
		return false;
	}
	this.object.left=this.increaser;
}












/////// FLASH FUNCTIONS




function about_header()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="194" title="aboutcontact">');
	document.write('<param name="movie" value="images/Flash/aboutflashheader.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/aboutflashheader.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="194"></embed>');
	document.write('</object>');
}


function artist_main_header()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="194">');
	document.write('<param name="movie" value="images/Flash/artistdmainflashheader.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/artistdmainflashheader.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="194"></embed>');
	document.write('</object>');
}


function artists_header(artistID)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="194">');
	document.write('<param name="movie" value="images/Flash/artists_flash_headers/' + artistID + '.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/artists_flash_headers/' + artistID + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="194"></embed>');
	document.write('</object>');
}


function arrow_up(scrollDiv, scrollDirection)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="33" height="17">');
	document.write('<param name="movie" value="images/Flash/scroll_up.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/scroll_up.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="33" height="17"></embed>');
	document.write('</object>');
}


function arrow_down(scrollDiv, scrollDirection)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="33" height="19">');
	document.write('<param name="movie" value="images/Flash/scroll_down.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/scroll_down.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="33" height="19"></embed>');
	document.write('</object>');
}


function arrow_left(scrollDiv, scrollDirection)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/scroll_left.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/scroll_left.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function arrow_right(scrollDiv, scrollDirection)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/scroll_right.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/scroll_right.swf?scrollDiv=' + scrollDiv + '&scrollDirection=' + scrollDirection + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}



function arrow_left_artists(artistID)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_left_artists.swf?artist_id=' + artistID + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_left_artists.swf?artist_id=' + artistID + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function arrow_right_artists(artistID)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_right_artists.swf?artist_id=' + artistID + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_right_artists.swf?artist_id=' + artistID + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function arrow_left_inactive_artists()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_left_inactive_artists.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_left_inactive_artists.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function arrow_right_inactive_artists()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_right_inactive_artists.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_right_inactive_artists.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}

function arrow_left_releases(releaseID)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_left_releases.swf?release_id=' + releaseID + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_left_releases.swf?release_id=' + releaseID + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function arrow_right_releases(releaseID)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_right_releases.swf?release_id=' + releaseID + '">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_right_releases.swf?release_id=' + releaseID + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function arrow_left_inactive_releases()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_left_inactive_releases.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_left_inactive_releases.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function arrow_right_inactive_releases()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="18" height="38">');
	document.write('<param name="movie" value="images/Flash/arrow_right_inactive_releases.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/arrow_right_inactive_releases.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="18" height="38"></embed>');
	document.write('</object>');
}


function freebies_header()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="77">');
	document.write('<param name="movie" value="images/Flash/freebiesflashheader.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/freebiesflashheader.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="77"></embed>');
	document.write('</object>');
}


function freebies_middle_bar()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="30">');
	document.write('<param name="movie" value="images/Flash/logo_download_button.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/logo_download_button.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="30"></embed>');
	document.write('</object>');
}


function main()
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,47,0" width="800" height="500" id="wimpy" align="center">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="images/Flash/main.swf?wimpyApp=wmp3_player\wimpy.php&amp;wimpySkin=wmp3_player\skins\skin_es_mini.xml&amp;defaultVisualExt=jpg&amp;theVolume=100&amp;bufferAudio=0&amp;infoDisplayTime=3&amp;scrollInfoDisplay=yes&amp;startPlayingOnload=yes&amp;autoAdvance=yes&amp;popUpHelp=yes" />');
	document.write('<param name="loop" value="true" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="salign" value="lt" />');
	document.write('<param name="bgcolor" value="#000000" /><param name="SCALE" value="exactfit">');
	document.write('<embed src="images/Flash/main.swf?wimpyApp=wmp3_player\wimpy.php&wimpySkin=wmp3_player\skins\skin_es_mini.xml&defaultVisualExt=jpg&theVolume=100&bufferAudio=0&infoDisplayTime=3&scrollInfoDisplay=yes&startPlayingOnload=yes&autoAdvance=yes&popUpHelp=yes" width="800" height="500" loop="false" align="center" menu="false" quality="high" scale="exactfit" salign="lt" name="wimpy" bgcolor="#000000" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}


function links_header()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="194">');
	document.write('<param name="movie" value="images/Flash/linksflashheader.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/linksflashheader.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="194"></embed>');
	document.write('</object>');
}


function releases_main_header()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="211">');
	document.write('<param name="movie" value="images/Flash/releasesflashheadercd001.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/releasesflashheadercd001.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="211"></embed>');
	document.write('</object>');
}



function releases_header(releaseID)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="211">');
	document.write('<param name="movie" value="images/Flash/releases_flash_headers/' + releaseID + '.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/Flash/releases_flash_headers/' + releaseID + '.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="194"></embed>');
	document.write('</object>');
}


