function popUpLoad(file_path,w_width,w_height,t,l)
{
	var pop_up = window.open(file_path,"","width=" + w_width +",height=" + w_height +",resizeable=false,scrollbars=yes,top=" + t + ",left=" + l);
	pop_up.focus();
}


function popUpWrite(content,w_width,w_height,t,l)
{
	var pop_up = window.open("","","width=" + w_width +",height=" +w_height +",resizeable=false,scrollbars=yes,top=" + t + ",left=" + l);
	pop_up.document.write(content);
	pop_up.document.close();
	pop_up.focus();
}

function printPage(hide_icon) 
{
	if(hide_icon == 1)
	{
		print_icon.src = "/graphics/clear.gif"
	}

	window.print();
	setTimeout("self.close();", 3000);
}	

function setStatus(view)
{
	if(view == "print")
	{
		window.status = "Print this Page";
		return true;
	}
	else
	{
		window.status = "";
		return true;
	}	
}