function displayWindow(url,width,height) {
                
x = (640 - width)/2, y = (480 - height)/2;

nWidth = width;
nHeight = height;

if (screen) {
	y = ((screen.availHeight - height)/2)-93;
	x = ((screen.availWidth - width)/2)-390;
}

if (screen.availWidth > 640) {
	
	x = ((screen.availWidth/2) - width)/2;
    
}

	window.open(url,'newWin','scrollBars=no,width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);

}

function displayWindow2(url,width,height) {
                
x = (640 - width)/2, y = (480 - height)/2;

nWidth = width;
nHeight = height;

if (screen) {
	y = ((screen.availHeight - height)/2)-93;
	x = ((screen.availWidth - width)/2)-390;
}

if (screen.availWidth > 640) {
	
	x = ((screen.availWidth/2) - width)/2;
    
}

	window.open(url,'newWin','scrollBars=yes,width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);

}

function 
Show(message) {

		window.status=message;

}

function
Hide() {

		window.status='';return true;

}

function
ClearForm() {

	document.contact.Name.value = "";
	document.contact.Email.value = "";
	document.contact.Comments.value = "";

}

function blurname() {

	if (document.contact.Name.value == '') {

		document.contact.Name.value = 'Enter your name'

	}

}

function focusname() {

	if (document.contact.Name.value == 'Enter your name') {

		document.contact.Name.value = ''

	}

}

function bluremail() {

	if (document.contact.Email.value == '') {

		document.contact.Email.value = 'Enter your email address'

	}

}

function focusemail() {

	if (document.contact.Email.value == 'Enter your email address') {

		document.contact.Email.value = ''

	}

}

function blurit() {

	if (document.contact.Comment.value == '') {

		document.contact.Comment.value = 'Q/Comment'

	}

}

function focusit() {

	if (document.contact.Comment.value == 'Q/Comment') {

		document.contact.Comment.value = ''

	}

}



