/* print */
txtWnd = null;
function open_window(url)
{ 
	if ( txtWnd != null )
	{
		if ( !txtWnd.closed )
		{
			txtWnd.close();
			txtWnd = null;
		}
	}


h = screen.availHeight - 100;
w = 730;

	if (document.all)
		txtWnd = window.open(url,'','height='+h+',width='+w+',top=40,left=20,scrollbars=1,resizable=0,toolbar=yes');
	else
		txtWnd = window.open(url,'','height='+h+',width='+w+',screenX=20,screenY=40,scrollbars=1,resizable=0,toolbar=yes');

	txtWnd.focus();
}


if ( ( location.href.substring(( (location.href.length)-9 ),( location.href.length ) ) ) == 'print=yes') {
	document.write( '<link href=\"http://www.rfv.ch/cms/css/print.css\" rel=\"stylesheet\" media=\"screen\" type=\"text/css\"> \n');
	document.write( '<link href=\"http://www.rfv.ch/cms/css/print.css\" rel=\"stylesheet\" media=\"print\" type=\"text/css\"> \n');

if ( (navigator.appVersion.indexOf("MSIE")!=-1) && (navigator.platform.indexOf("MacPPC") != -1) ){
	
	/* do nothing */
	
	} else {
	
	/* print */
	window.print();
	}
	
}