// JavaScript Document


function deirdre_window(URLsmall, URLlarge) {
	
	if (screen.height < 900){
		window.open(URLsmall,'zoom','height=' + screen.height + ',width=' + screen.width + ',fullscreen=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=0,top=0');
	}
	
	else {
		window.open(URLlarge,'zoom','height=' + screen.height + ',width=' + screen.width + ',fullscreen=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=0,top=0');
	}

}