<!-- Begin POP-UP SIZES AND OPTIONS CODE

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var paragraph_1 	= "no"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "no"		// SHOW THE 2ND PARAGRAPH
var showimage		= "yes"		// SHOW A SIDEBAR IMAGE
var spacing		= "1"		// NUDGE SIDEBAR DOWN
var bordercolor		= "FFFFFF"	// SCROLLER AND IMAGE BORDER COLOR

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "left"	// DATE LEFT OR RIGHT
var dateX		= "20"		// DATE X LOCATION
var dateY		= "235"		// DATE Y LOCATION

var showlogo		= "yes"		// SHOW THE Logo ON THE PAGE
var logoposx		= "15"		// LOGO X LOCATION
var logoposy		= "65"		// LOGO Y LOCATION

var showsearch		= "no"		// SHOW THE SEARCH FORM
var searchLR		= "left"	// SEARCH FORM LEFT OR RIGHT
var searchX		= "10"		// SEARCH FORM X LOCATION
var searchY		= "232"		// SEARCH FORM Y LOCATION
var searchwidth		= "160"		// WIDTH OF THE SEARCH FORM
var searchtext		= "Web Search"	// TEXT ABOVE SEARCH FORM

var showsflash		= "yes"		// SHOW FLASH IMAGE CHANGER
var flashcolor		= "FFFFFF"	// FLASH BACKGROUND COLOR
var flashwidth		= "150"		// WIDTH OF THE FLASH (IN PIXELS) (and adjust the menu.js)
var flashheight		= "150"		// HEIGHT OF THE FLASH (IN PIXELS) (and adjust the menu.js)


// EDIT THE "scroller/scroll.variables0.js" FOR SCROLLER OPTIONS


// NUDGE SPACER
document.write('<img src="specialist/spacer.gif" height="'+spacing+'" width="10"><br>')


// SMALL PICTURE AREA
   if (showimage == "yes") {

document.write('<br><TABLE cellpadding="0" cellspacing="0" border="0" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')
document.write('<a href="http://www.concept-uk.net/index.html"><IMG SRC="specialist/logotext.gif" border="0" width="150"></a><br>')
document.write('</td></tr></table>')
document.write('<br><br>')
}


// START LOGO POSITION SCRIPT
   if (showlogo == "yes") {

document.write('<div id="logo-location" style="'+dateLR+': '+logoposx+'px; POSITION: absolute; TOP: '+logoposy+'px">');
document.write('<a href="http://www.concept-uk.net/index.html"><IMG SRC="specialist/Eye_small.jpg" border="0" width="150"></a><br>')
document.write("</nobr><br></span>")
document.write('</div>');

}

// START SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<span class="sidebartitle">')

document.write('Concept UK - creating workspaces that work')

document.write('<br><br></span><span class="sidebartext">')

document.write('The Specialists who can make your workspace work. Really work. Because our approach to interiors is, well, different. <br><br>')

}
// END SIDEBAR AREA PARAGRAPH 1




// FLASH CHANGER
   if (showsflash == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse:collapse"><tr><td valign="bottom">')
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'">')
document.write('<param name="movie" value="specialist/imagechanger.swf" />')
document.write('<!--[if !IE]>-->')
document.write('<PARAM NAME=bgcolor VALUE=#'+flashcolor+'>')
document.write('<object type="application/x-shockwave-flash" data=" specialist/imagechanger.swf" width="'+flashwidth+'" height="'+flashheight+'">')
document.write('<!--<![endif]-->')
document.write('<p>Flash Cannot Play</p>')
document.write('<!--[if !IE]>-->')
document.write('</object>')
document.write('<!--<![endif]-->')
document.write('</OBJECT><br>')
document.write('</td></tr></table>')
document.write('<br><br>')
}










// START SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA

   if (paragraph_2 == "yes") {

document.write('<br></span><span class="sidebartext">')

document.write('"Civilisation advances by extending the number of important operations we can perform without thinking about them" <br>')

document.write('<br> <i>Alfred Whitehead -  mathematician,logician & philosopher, 1861-1947. <i><br>')

document.write('</span><br><br>')

}
// END SIDEBAR AREA PARAGRAPH 2




// SEARCH FORM
   if (showsearch == "yes") {

document.write('<div id="search" style="'+searchLR+': '+searchX+'px; POSITION: absolute; TOP: '+searchY+'px; width: auto; z-index: 1;">')
document.write('<TABLE cellpadding="0" cellspacing="2" border="0" width="'+searchwidth+'"><tr><td colspan="2" class="sidebartext">')
document.write(''+searchtext+'<br>')
document.write('</td></tr><tr><td align="left">')
document.write('<form action="http://www.google.com/search" name="f" target="_blank" style="margin: 0px">')
document.write('<input type="hidden" name="any selected">')
document.write('<input size="15" name="q" value="" class="searchform">&nbsp;<input type=submit value="Go!" name="btnG" class="searchbutton"><br>')
document.write('</form>')
document.write('</td></tr></table>')
document.write('</div>')
}



// START DATE SCRIPT
   if (showdate == "yes") {


document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
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>');

}





// -- END -->