function clearText(field)
{        
	if (field.defaultValue == field.value)
	{
		field.value = ''; 
		field.style.color='#000000';
	}
	else if (field.value == '')
	{
	field.value = field.defaultValue;
	field.style.color='#999999';			
	}
}

function popup(url,width,height)       
{
	newwindow = window.open(url,'name','menubar=no,addressbar=no,status=no,toolbar=no,directories=no,height=' + height + ',width=' + width + ',top=200,left=350');        
	if (window.focus) {newwindow.focus()}
	return false;
}

function printContent() 
{
	
	w = window.open('','printPopup', 'width=807,height=550,menubar=1,toolbar=1,scrollbars=1,location=1');
	w.document.open();
	
	element = document.getElementById("centerContent");
	
	w.document.write('<link href="/css/fbnew.css" rel="stylesheet" type="text/css" />');	
	w.document.write('<body style="background-color: #FFFFFF">')
	w.document.write('<div class="printHeader">')
	w.document.write('<img src="/images/header/genericheader.jpg" alt="Header" width="770" height="90">')
	w.document.write('</div>')
	w.document.write('<div class="printContent">')
	w.document.write('<p>&nbsp;</p>')
	w.document.write('<p>&nbsp;</p>')
	w.document.write(element.innerHTML);
	w.document.write('</div>')
	w.document.write('</body>')
	
//	w.print();
	w.document.close();
//	w.close();
}

