// JavaScript Document
	
	function showLargeImg(pURL,name,features){
		new_window = window.open(pURL,name,features);
		new_window.focus();
	}
	
	function showFlyer(url, target, features, expires) {
		//If the expiration date has passed, dont show
		
		new_window = window.open(url,target,features);	
	}