// JavaScript Document
var newwindow;
var chasm = screen.availWidth;
var mount = screen.availHeight;
function popup(loc)
{
	newwindow= window.open(loc,'termsofsales', "left="+((chasm - 600 - 10) * .5)+",top="+((mount - 450 - 30) * .5)+",width=600,height=450,toolbar=0,resizable=0,minimize=0,scrollbars=1");
	if (window.focus) {newwindow.focus()}
}