
function OpenWin(thePage, Width, Height, theTitle) {
	var wparams = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + Width + ",height=" + Height + ",ScreenX=50, Left=50, ScreenY=50, Top=50";
	return window.open(thePage, theTitle, wparams);
}
function SafeResizeWindow(DesiredWidth, DesiredHeight) {
	var width = DesiredWidth;
	var height = DesiredHeight;
	if (width > screen.availWidth - window.screenLeft) width = screen.availWidth - window.screenLeft;
	if (height > screen.availHeight - window.screenTop) height = screen.availHeight - window.screenTop;
	top.window.resizeTo (width, height);
}

function ReturnToFrames() {
	if (self==parent)
	{
	document.write('<center><font color=#ff000>Transferring to Conservatory Construction Company site...</font><center>')
	document.write('<META HTTP-EQUIV="refresh" CONTENT="5; URL=../index.html">')
	}
}

