var fullURL = parent.document.URL;
	var qString = fullURL.substring(fullURL.indexOf('?')+1, fullURL.length);
	if (qString=='printer') {
		var csslink=document.createElement('link')
		csslink.setAttribute('rel','stylesheet');
		csslink.setAttribute('href','http://www.mof.gov.sg/budget_2009/style/printer.css');
		document.getElementsByTagName('head')[0].appendChild(csslink);
		x = document.getElementById( 'printer' );
		if (x) {
			x.style.display = "block";
		}		
	}	
