// CREATE POP-UP WINDOW
// USAGE: <a href="javascript:modelesswin('registration.php',770,590)">text</a>
// USAGE: in script... modelesswin('registration.php',400,200);

function modelesswin(url,mwidth,mheight) {

		eval('window.open(url,"","width='+mwidth+'px,height='+mheight+'px,resizable=0,scrollbars=0")')

}

// LOCK RIGHT MOUSE BUTTON

function click(e) {
	if (document.all) if (event.button == 2) return false;
	if (document.layers) if (e.which == 3) return false;
}

function click2() {
	event.returnValue = false; return false;
}

if (document.layers) document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=click;document.oncontextmenu=click2;

