/* 
 * General javascripts for newspaper
 */
buyThisPicture = function(){
	var imageUrl = PG_getImageUrl(); 	
 	var goto = window.location.protocol;
 	goto = goto + '//' ;
 	goto = goto + window.location.host;
 	goto = goto + window.location.pathname;
 	goto = goto.replace(/index.cfm/gi,'');
 	goto = goto + 'index.cfm?event=buyImage';
 	goto = goto + '&image=' + imageUrl
 	window.location = goto;
}