

function clickThrough(myFile, myTarget) {
	
	var myLink = 'includes/ajaxWork.lasso?f=' + myFile;
	
	new Ajax.Request(myLink, {method: 'get'} );
	
	window.open(myTarget);
	
	}
	
	
	
	
	
	

