// JavaScript Document
function clearform(which){
if (which.value=="enter your email address")
which.value='';
}

function clearform02(which){
if (which.value=="enter your order number")
which.value='';
}

var newWindow = null;
function openWindow(contentURL, windowName, windowWidth, windowHeight) {
	 
	   widthHeight = 'width=' + windowWidth +',' + 'height=' + windowHeight;
	   newWindow = window.open(contentURL, windowName, widthHeight);
	   newWindow.focus();
	 
}

var newWindow = null;
function openWindow02(contentURL, windowName, windowWidth, windowHeight) {
	 
	   widthHeight = 'width=' + windowWidth +',' + 'height=' + windowHeight + ',scrollbars=yes';
	   newWindow = window.open(contentURL, windowName, widthHeight);
	   newWindow.focus();
	 
}