// Lovingly prepared by LotusHead // lotus@finegrafix.co.za
// We do it, cause we love it!


// MAXIMIZE PAGE

function maximizeWin() {
  if (window.screen) {
    var aw = screen.availWidth;
    var ah = screen.availHeight;
    window.moveTo(0, 0);
    window.resizeTo(aw, ah);
  }
}

// ALERT 640x480 - Bless their poor souls...

function checkRes() {
	if ((screen.width < 780) || (screen.height < 550))
		alert('Please note: This site is optimized for a Screen Resolution of 800x600 or larger. Please adjust your settings for optimal viewing.');
}

// SELECT DROPDOWNS

function SelectIt() {
  if (document.QuickJump.Select.options[document.QuickJump.Select.selectedIndex].value != "none"){ 
    location = document.QuickJump.Select.options[document.QuickJump.Select.selectedIndex].value}
}

// CLEAR FORM FIELDS

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 

// POPUP - NOSCROLL

var desktop;
function key(Pop, name, size)
{
desktop=window.open(Pop, name, size+'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,top=20,left=20');
}

// POPUP - SCROLL

var desktop;
function keyScroll(Pop, name, size)
{
desktop=window.open(Pop, name, size+'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=20,left=20');
}