$(document).ready(function(){
	$('#lightsoff').hide();
	$('.turn-on-lights').hide();
	$('.turn-off-lights').click(function() {
		$('.turn-off-lights').hide();
		$('.turn-on-lights').show();
		$('#lightsoff').fadeIn('slow');
	});
	$('.turn-on-lights').click(function() {
		$('.turn-on-lights').hide();
		$('.turn-off-lights').show();
		$('#lightsoff').fadeOut('slow');
	});
});

//

$(document).keyup(function(e) {
	if (!e.srcElement.tagName.toLowerCase().match(/input|select|textarea/)) {
			if (e.keyCode == 76) $('.turn-off-lights').click();
			else if (e.keyCode == 27) $('.turn-on-lights').click();
		}
});

//

var newWin = null;  
function popUp(strURL, strType) {
	
	var left = (screen.width/2)-(550/2);
	var top = (screen.height/2)-(450/2);
	
 if (newWin != null && !newWin.closed)  
   newWin.close();  
 var strOptions="";  
 if (strType=="console")  
   strOptions="resizable,height=450,width=550,top="+top+", left="+left;  
 if (strType=="fixed")  
   strOptions="status,height=450,width=550,top="+top+", left="+left;  
 if (strType=="elastic")  
   strOptions="toolbar,menubar,scrollbars,"+  
     "resizable,location,height=450,width=550,top="+top+", left="+left;  
 newWin = window.open(strURL, 'newWin', strOptions);  
 newWin.focus();  
}
