// JavaScript Document
function enterSearchBar(obj){
	if(obj.value == 'Product Search') obj.value = '';
	obj.className = 'textfieldFocused';
}

function leaveSearchBar(obj){
	if(obj.value == '') obj.value = 'Product Search';
	obj.className = 'textfield';
}

function popUrl(url, width, height){
	var win1 = window.open(url,"popUrl",'status=yes,scrollbars=yes,width='+width+',height='+height);
	win1.focus();
}

function popImage(url, width, height){
	var win1 = window.open(url,"popUrl",'status=no,scrollbars=no,width='+width+',height='+height);
	win1.focus();
}

function setClassName(){
	// do nothing this time.	
}