
$(document).ready(function(){

});


function mtWindow(mylink) {
	if (typeof(mylink) == 'string') {
		href = mylink;
	}
	else {
		href = mylink.href;
	}
	var width  = 1030;
	var height = 770;
	var left   = (screen.width  - width)/2;
	var top    = (screen.height - height)/2;
	var params = 'width='+width+', height='+height;
	params += ', top='+top+', left='+left;
	params += ', directories=no';
	params += ', location=no';
	params += ', menubar=no';
	params += ', resizable=no';
	params += ', scrollbars=yes';
	params += ', status=no';
	params += ', toolbar=no';
	newwin=window.open(href,'mt_window', params);
	if (window.focus) {
		newwin.focus();
	}
	return false;
}

