// popup for horoscopes

	function horoscopespopup(theURL){

		horoscopeswin= window.open('horoscopes.html','horoscopes','toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,width=200,height=220');

	}


// Open photos of the week popup

	function openphotopopup(theURL) {

  	  photowin= window.open(theURL,'photos','toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,width=439,height=550');

	}


// popup for pickup locations

	function pickuppopup(theURL){

		pickupwin= window.open('pickuplocations.html','pickups','toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,width=275,height=350');

	}


// return for photo popup to story in main page

	function StoryPhoto(file){
	
	    top.opener.window.location.href = file;
	
	window.close();
}

