//function to open the "Veneer Viewer" to avoid the rediculousness of the other script
function launchViewer(which){
	var url = which.href;
	var viewer = window.open(url,"viewer","width=525,height=650,resizeable=1,scrollbars=1");
	
	if(viewer){ return false; } else { return true; }
}