function MM_openBrWindow() {    
	var da = (document.all) ? 1 : 0; 
	var pr = (window.print) ? 1 : 0; 	
    
	if(!pr) 
		return;     
	var printArea = document.getElementById("pageContent"); 

	if(printArea == null)
		printArea = document.getElementById("screenContent"); 	

	if(printArea == null && da)
		printArea = document.all.MiddleRegionD; 	
	if(printArea) 
	{     	    
		var sStart = "<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"../styles/print.css\"></head><body onload=\"javascript:window.print();\">";
		sStart += "<img src='../images/logo.gif' /><hr class='topBar' />";
		sStop = "</body></html>"; 
		//var w = window.open(theURL,winName,features); 
		var w = window.open('about:blank','printWin','status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=690,height=600');
		wdoc = w.document; 
		wdoc.open(); 
		wdoc.write( sStart + printArea.innerHTML ); 
		wdoc.writeln( sStop ); wdoc.close(); 
	} 
}
function changeValueTemp(iElement)
{
	if(iElement.value==iElement.defaultValue)
		iElement.value='';
	else if(iElement.value=='')
		iElement.value=iElement.defaultValue;
}
