// keywords
var keywords="Enter keywords";
function showwords(thisobj,thistype){
	if(thistype){
		if(thisobj.value=="")
			{thisobj.value=keywords;
		    thisobj.style.color='#B3B3B3';}
	}else{
		if(thisobj.value==keywords)
			{thisobj.value="";
		    thisobj.style.color='#444444';}
	}
}
// Order ID
var orderbox="Enter Order ID";
function orderid(thisobj,thistype){
	if(thistype){
		if(thisobj.value=="")
			{thisobj.value=orderbox;
		    thisobj.style.color='#B3B3B3';}
	}else{
		if(thisobj.value==orderbox)
			{thisobj.value="";
		    thisobj.style.color='#444444';}
	}
}
