var myWindow;

function printInfo(contID) {
	var ID = document.getElementById(contID);
	//var IDD = document.getElementById("custom-options");
	
	var basecall = "<link rel='stylesheet' type='text/css' href='http://www.thehumansolution.com/thehumansolution-styles.css' /> ";
	var csscall = "<link rel='stylesheet' type='text/css' href='http://lib.store.yahoo.net/lib/thehumansolution/print.css' />";
	var scriptcall = "<script type='text/javascript' src='http://lib.store.yahoo.net/lib/thehumansolution/change-price.js'></script>";
	var logo = "<img src='http://lib.store.yahoo.net/lib/thehumansolution/ck-logo.jpg' /><br />";
	
	var phoneNumber = "1-800-531-3746<br />";
	//myWindow = window.open('','','width=1,height=1');
	myWindow = window.open('','','width=803,height=803,scrollbars=1');
	myWindow.document.write(basecall + csscall + scriptcall + logo + phoneNumber + ID.innerHTML);
	
	
	
	var winint = setTimeout("myWindow.print()", 2000);
	myWindow.document.close();
	//var winint = setTimeout("closeWin()", 3000);
	
	
	
}
function closeWin(){
	myWindow.close();
}
