$(document).ready(function () {
	var height = $('div#container').height()-280; //alert(height);
	$('div#bg-middle').height(height+20);
	$('div#bg-bottom').css('margin-top',height+18+280);
});

function productheader(content){
	var divph = $('div#productheader');
	if (content==""){
		divph.fadeTo(100,0);
	}
	else {
		divph.fadeTo(1,0); 
		content = '<img src="'+content+'" border="0">';
		divph.html(content);
		divph.fadeTo(200,1);
	}	
}

function Check(){
if (document.form1.search_product.value == "" ) 
{
alert("Enter Search")
    return false;
}
 {
 return true;
  }
}

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
