function alertLocal(str) { 
    //alert(str); 
}

$(document).ready(function() {
	/* ------------------ Log In Function --------------- */
	$('a#login_message').click(function(event) {
		event.preventDefault();
    	var sContent = '';
    	sContent += '<p style="text-align: center;">';
    	sContent += '<h3 style="text-align: center;">Administrative Login</h3>';
    	sContent += '<form method="post" style="text-align: center">';
    	sContent += '<b>User Name</b><br/>';
    	sContent += '<input class="login-input" type="text" name="user" style="border: 2px inset #A8A8A8;"/><br/>';
        sContent += '<br />';
    	sContent += '<b>Password</b><br/>';
		sContent += '<input class="login-input" type="password" name="password" style="border: 2px inset #A8A8A8;"/><br />';
        sContent += '<br />';
        sContent += '<input type="submit" value="Login" style="width: 100px;" style="border: 1px solid black;" />';
        sContent += '</form>';
        sContent += '</p>';
        sContent += '<p style="text-align: center; font-size: 10px;">[ Click/Tap outside the Message Box to Close it. ]</p>';
                
        $.msg({ autoUnblock : false, content: sContent, afterBlock : function(){}, beforeUnblock : function(){} });
    });
            
});


