/*image preload*/
function WM_preloadImages() {
	if (document.images) {
		if (typeof(document.WM) == 'undefined'){
			document.WM = new Object();
		}
		document.WM.loadedImages = new Array();
		var argLength = WM_preloadImages.arguments.length;
		for(arg=0;arg<argLength;arg++) {
			document.WM.loadedImages[arg] = new Image();
			document.WM.loadedImages[arg].src = WM_preloadImages.arguments[arg];
		}
	}
}

function clearform1(which){
if (which.value=="Last name")
which.value='';
}

function clearform2(which){
if (which.value=="First name")
which.value='';
}

function clearform3(which){
if (which.value=="Last name")
which.value='';
}

function clearform4(which){
if (which.value=="First name")
which.value='';
}

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