// JavaScript Document


window.addEvent('domready', function(){

	var screenHeight = screen.height;
	var screenHeightSafari = screenHeight-44;
	
	$$('#button a').addEvent('click', function(e){
		var e = new Event(e).stop();
		var url = e.target;
		var att = 'width=785,height=768,status=no,scrollbars=yes,directories=no,menubar=no,resizable=no,toolbar=no';
		if(screenHeight < 1024){
			att = 'width=785,height='+screenHeight+',status=no,scrollbars=yes,directories=no,menubar=no,resizable=no,toolbar=no';
		}
		if(screenHeight < 1024 && window.webkit == true){
			att = 'width=785,height='+ screenHeightSafari +',status=no,scrollbars=yes,directories=no,menubar=no,resizable=no,toolbar=no';
		}
		window.open(url,'gkwindow', att);
	});
});

