function CloseThisWindows() {
	window.close();
};

function CloseAndReload() {
	opener.location.reload();
	window.close();
};

function Popup(url) 
{
	var newWindow;
	var props = 'scrollBars=1,resizable=1,toolbar=0,menubar=0,location=0,directories=0,width=700,height=800';
	newWindow = window.open(url, "Popup", props);
	newWindow.focus();
}

function TTDisplay(url) 
{
	var newWindow;
	var props = 'scrollBars=1,resizable=1,toolbar=0,menubar=0,location=0,directories=0,width=550,height=350';
	newWindow = window.open(url, "TTDisplay", props);
	newWindow.focus();
}

function TTDisplay1(url) 
{
	var newWindow;
	var props = 'scrollBars=1,resizable=1,toolbar=0,menubar=0,location=0,directories=0,width=550,height=450';
	newWindow = window.open(url, "TTDisplay1", props);
	newWindow.focus();
}

function DisplaySpec(url) 
{
	var newWindow;
	pos1 = screen.width - 800
	var props = 'top=0,left=800,scrollBars=1,resizable=1,toolbar=0,menubar=0,location=0,directories=0,width=750,height=870';
	newWindow = window.open(url, "DisplaySpec", props);
	newWindow.focus();
}

function DisplayNew(url) 
{
	var newWindow;
	newWindow = window.open(url, "DisplayNew");
	newWindow.focus();
}

function DisplayPics(url) 
{
	var newWindow;
	pos1 = screen.width - 800
	var props = 'top=0,left=800,scrollBars=1,resizable=1,toolbar=0,menubar=0,location=0,directories=0,width=750,height=450';
	newWindow = window.open(url, "DisplayPics", props);
	newWindow.focus();
}

function PopUpSize(url, w, h) 
{
	other = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h+",left=10,right=10";
	newWindow = window.open(url,"PopUpSize", other);
	newWindow.focus();
}

function PopUpSize2(url, w, h) 
{
	other = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=1,resizable=0,width="+w+",height="+h+",left=10,right=10";
	newWindow = window.open(url,"PopUpSize2", other);
	newWindow.focus();
}