//---- popup file viewer indow:
function popimage(url,name,features) {
twowin = window.open(url,'popupimage','resizable=yes,width=200,height=60,scrollbars=no');
twowin.focus();
}

// -- open CMS admin window:
function OpenAdmin(theURL){
	LeftPosition = (screen.width) ? (screen.width)-510 : 0;
	cmsheight = (screen.height) ? (screen.height)*.75 : 550;
	settings = 'height='+cmsheight+',width=500,top=0,left='+LeftPosition+',scrollbars=yes,resizable=yes'
	win = window.open(theURL,'viewit',settings)
}

// -- forgot password popup:
function passpop(url,name,features) {
twowin = window.open(url,'popup','resizable=yes,width=300,height=250,scrollbars=no');
twowin.focus();
}

// -- paypal cart window:
var win = null;
function paypal(mypage){
h = 500;
w = 800;
myname = 'paypal';
LeftPosition = (screen.width) ? (screen.width-w)/2 : 100;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=yes'
win = window.open(mypage,myname,settings)
}
