/* this function opens the magazine in full screen. The publication name is passed as an argument.*/
function viewfullscrn (pub) {
	var w = screen.availWidth
	var h = screen.availHeight
	var newwindow
	if (pub == 'cosmos') {
		var processpath = 'http://digital.cosmosmagazine.com';
	} else if (pub = 'gmag') {		
		var processpath = 'http://digital.gmagazine.com.au';
	}
	//var processpath='http://demo27.realviewtechnologies.com/flip.asp?xml='+pub+'.xml'
	var features = 'left=0,top=0,screenX=0,screenY=0,scrollbars=no,status=no,width='+w+ ',height=' + h
	newwindow = window.open (processpath,pub,features)
	newwindow.focus()
}
