function printIt(target)
{ 
	winId = window.open('', 'printwin', 'width=580, height=430, scrollbars=yes, menubar=yes'); 
	//winId.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><link rel="Stylesheet" href="/css/print.css" type="text/css" media="print"/><title>consultingplus</title></head><body>');
	winId.document.write('<?DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><style type="text/css"> a { color: #000; text-decoration: none; } body { font-family: "Arial CE", "Helvetica CE", Arial, Helvetica, sans-serif; } #lang-switch, #article-foot, #nav, #navigation, #footer { display: none; } a img { border-style: none; } h2 { font-size: medium } #tb { display: none;} .img-to-left {  float: left;} .img-to-right { float: right;} .article-perex {  margin: 0;} .orange {  color: rgb(255, 102, 0); .bigorange { color: rgb(255, 102, 0);  font-size: 125%;}.biggray { color: #666; line-height: 190%; margin-top: 3.35em;} .article-content a { color: rgb(255, 102, 0);}</style><title>consultingplus</title></head><body>');
	winId.document.write(target); 
	winId.document.write('</body></html>');
	winId.document.close(); 
	winId.focus(); 
	if (window.print)
	{
		winId.print();
	}
}

function searchClear(target, text)
{
	if (target.value == text)
	{
		target.value = '';
	}
}

function searchRestore(target, text)
{
	if (target.value == '')
	{
		target.value = text;
	}
}

function bar(url)
{
	wasOpen = false;
	win = window.open(url);    
	return (typeof(win)=='object')?true:false;
}

