

function TextClear( inputtext, textvalue, color ) {

	if( inputtext.value == textvalue )	
		inputtext.value='';
	inputtext.style.backgroundColor = color;
}
 
function TextShow( inputtext, textvalue, color ) {
				
	if( inputtext.value == '' )
		inputtext.value=textvalue;
	inputtext.style.backgroundColor = color;
}

 
function displayWindow(url, width, height)
{

   	var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );

}
