<!-- Begin HEADER OPTIONS CODE

var title1              = "Fancy Dress Emporium"
var title2              = "Shop for new &amp; used fancy dress items including masks, stage &amp; theatrical costumes"

var color		= "C0D3F2"		// HEADER BACKGROUND COLOR
var showimage 		= "yes"	 		// SHOW THE SMALL IMAGE ON THE HEADER RIGHT SIDE
var bordercolor		= "000000"		// SCROLLER AND IMAGE BORDER COLOR
var edge_distance	= "10"			// PLACE IMAGE FROM EDGE
var height		= "100"			// HEIGHT OF THE HEADER

var showdate		= "yes"			// SHOW THE DATE ON THE PAGE
var dateLR		= "left"		// DATE LEFT OR RIGHT
var dateX		= "11"			// DATE X LOCATION
var dateY		= "107"			// DATE Y LOCATION

var localDir		= "/_local"		// Local file folder location



// MAIN TOP TITLE AREA

document.write('<table border="0" cellpadding="0" cellspacing="0" border="0" width="100%" height="'+height+'" bgcolor="#'+color+'" background="/themes/shopemporium/images/stretchbar-title.jpg">');
document.write('<tr><td align="left" valign="top">');

document.write('<a href="/"><img src="/_local/picts/shop-emporium-logo.jpg" alt="'+title1+' site logo" title="Return to the '+title1+' home page" border="0"></a>');

document.write('</td><td align="left" valign="middle" width="750"><h1><a style="text-decoration: none; color: #505E75;" href="/" title="Return to the '+title1+' home page">'+title1+'</a></h1><br>');
document.write('<h2>'+title2+'</h2></td>');
document.write('<td align="right" valign="middle">');



// SMALL RANDOM PICTURE AREA

if (showimage == "yes") {

document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')

var twox = "<a href=\"/\"><img alt=\""+title1+" image\" title=\"Return to the "+title1+" home page\" src=\""+localDir+"/picts/";
var thrx = " width=\"100\" height=\"80\" border=\"0\">";
var forx = "";
var img = "";

forx += Math.floor(Math.random()*4);
img = forx;
if (img == "0") {
document.write(twox+ 'header-image1.jpg"' +thrx);
}
if (img == "1") {
document.write(twox+ 'header-image2.jpg"' +thrx);
}
if (img == "2") {
document.write(twox+ 'header-image3.jpg"' +thrx);
}
if (img == "3") {
document.write(twox+ 'header-image4.jpg"' +thrx);
}
document.write('</a><br>');
document.write('</td></tr></table>')
}

else {

document.write('<img src="/themes/shopemporium/images/spacer.gif" width="10" height="10"><br>');

}

document.write('</td><td align="right" valign="middle" width="'+edge_distance+'">');
document.write('<img src="/themes/shopemporium/images/spacer.gif" width="'+edge_distance+'" height="10"><br>');
document.write('</td></tr></table>');



<!-- BAR TABLE -->

document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td bgcolor="#7A8DAB" height="1">')
document.write('<IMG SRC="/themes/shopemporium/images/spacer.gif" height="1" width="15" border="0"><br>')
document.write('</td></tr><tr><td bgcolor="#FFFFFF" background="/themes/shopemporium/images/stretchbar.jpg">')
document.write('<IMG SRC="/themes/shopemporium/images/spacer.gif" height="25" width="15" border="0"><br>')
document.write('</td></tr><tr><td bgcolor="#7A8DAB" height="1">')
document.write('<IMG SRC="/themes/shopemporium/images/spacer.gif" height="1" width="15" border="0"><br>')
document.write('</td></tr></table>')

<!-- BAR TABLE -->



// START DATE SCRIPT

if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}


// TOP MENU OPTIONS

document.write('<div id="date-location" style="right: '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');

document.write('<a href="/index.php">Home</a>');
document.write('&nbsp;&nbsp;|&nbsp;&nbsp;');

document.write('<a href="AboutUs">About Us</a>');
document.write('&nbsp;&nbsp;|&nbsp;&nbsp;');

document.write('<a href="Sitemap">Sitemap</a>');
document.write('&nbsp;&nbsp;|&nbsp;&nbsp;');

document.write('<a href="FAQ">FAQ</a>');
document.write('&nbsp;&nbsp;|&nbsp;&nbsp;');

document.write('<a href="Links">Links</a>');
document.write('&nbsp;&nbsp;|&nbsp;&nbsp;');

document.write('<a href="ContactUs">Contact</a>');

document.write('</div>');



//  End -->