// JavaScript Document
var newwindow;
var new2;

function loadadmin(){
	if(newwindow){newwindow.close();}	
	newwindow = window.open('../admin/admin.asp', 'my_window','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,left=0,top=0');
	if(window.focus){newwindow.focus();}
}

function load_new(str){
	if(newwindow){newwindow.close();}	
	newwindow = window.open(str, 'my_window','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,left=0,top=0');
	if(window.focus){newwindow.focus();}
}

function load_rec(str){
	if(new2){new2.close();}	
	newwindow = window.open(str, 'my_window2','toolbar=0,scrollbars=0,location=0,status=0,menubar=1,resizable=0,width=500px,height=500px,left=0,top=0');
	if(window.focus){new2.focus();}
}