<!--
var bookmarkurl="http://www.cortaflex-online.co.uk"
var bookmarktitle="Cortaflex Online"
function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
function openWindow(url,wide,tall) 
	{
	style = "width="+wide+",height="+tall+",left=30,top=30,toolbar=0,statusbar=0,scrollbars=0,resizable=1"
	window.open (url,"_blank", style)
	}
function fixheight()
	{
	var midrheight = document.getElementById('rightmain').offsetHeight;
	var midlheight = document.getElementById('leftmain').offsetHeight;
	var theHeight = 0;
	if (midrheight > midlheight)
		{
		theHeight = midrheight;
		} else {
		theHeight = midlheight;
		}
	var topofbottom = theHeight + 10;
	document.getElementById('bottom').style.top = topofbottom + 'px';
	//=========================
	var rightheight = document.getElementById('rightblock').offsetHeight;
	var leftheight = document.getElementById('leftblock').offsetHeight;
	var midheight = document.getElementById('bottom').offsetHeight + topofbottom + 15;
	if (rightheight > leftheight)
		{
		theHeight = rightheight;
		} else {
		theHeight = leftheight;
		}
	if (midheight > theHeight)
		{
		theHeight = midheight;
		} 
	document.getElementById('container').style.height = theHeight + 5 + 'px';
	}
-->