
function new_win(link)
{window.open(link,'_blank',"height=400, width=400, left=200, top=200, status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no");return false;}
function disable_paste()
{$j('input.dis_paste').keydown(function(event)
{var code=event.which;var character=String.fromCharCode(code).toLowerCase();if((event.ctrlKey&&character=='v')||(event.shiftKey&&code==45))
{setTimeout(function(){alert('Please retype your email instead of pasting it');},100);return false;}});$j(document.body).bind('contextmenu',function(event){if($j(event.target).hasClass('dis_paste'))
{alert('Please retype your email instead of pasting it');return false;}});}
$j(function(){if(window.init_login)
{$j('form[name=login_form1]').attr('action',window.location.hash);}});