//this function opens up a new full screen window for displaying the issue 

function opnfullscrn  (publication) {
	var w = screen.availWidth;
	var h = screen.availHeight;
	var features = 'left=0,top=0,screenX=0,screenY=0,scrollbars=no,status=no,width='+w+ ',height=' + h;
	window.open ('http://mediakits.realviewtechnologies.com/?xml=' + publication + '.xml',publication,features);
}

