function switchPrint(cssPath){
	var linkObject = document.createElement("link");
	linkObject.setAttribute("rel","stylesheet");
	linkObject.setAttribute("type","text/css");
	linkObject.setAttribute("href",cssPath);
	linkObject.setAttribute("id","print");
	linkObject.setAttribute("media","print");
	document.getElementsByTagName("head")[0].appendChild(linkObject);
	window.print();
}

