google.load("jquery","1.3.2");

google.setOnLoadCallback(function(){
	
	
	
});

function printElement(theFile) {

	randNum=(""+(Math.random()*1000)+"").substr(0,3);
	ifr='printThis'+randNum;
	ifi='#'+ifr;

	$("body").append("<iframe id=\""+ifr+"\" name=\""+ifr+"\"></iframe>");
	
	$(ifi).css("visibility","hidden").width(780).height(500).attr('src', theFile).focus().load(function(){ window.frames[ifr].print(); });	
	
	
}