scrWidth = screen.width;
scrHeight = screen.Height;

popWidth = scrWidth - 75;
popHeight = scrHeight - 100;

var pop;
function popWin(URLName) {
	pop = window.open(URLName,'win','width=578,height=455,scrollbars=1,resizable=1');
	//pop = window.open(URLName,'win','width=' + popWidth + ',height=' + popHeight + ',scrollbars=1,resizable=1');			
	pop.moveTo(15,15);
}

var mem
function popMemberWin(URLName) {
	mem = window.open(URLName,'mem','width=578,height=455,scrollbars=1,resizable=1');
	//mem = window.open(URLName,'mem','width=' + popWidth + ',height=' + popHeight + ',scrollbars=1,resizable=1');
	mem.moveTo(35,35);
}