
$(document).ready(function() {
	$("#headerLogin").click(function(){	
		 pwnDialog();
		 
		 return false;
	});	
});

function pwnDialog(){
	$("#headerLogin2").dialog({
	   height: 'auto',
	   width: 330,
	   modal: false,
	   draggable: false,
	   closeOnEscape: false,
	   resizable: false
   });

	return false;
}
