function popwindow(ww,wh,url) {
	ww = 'width=' + ww; 
	wh = 'height=' + wh;
	w = ww + ',' + wh + ',' + 'resizable, scrollbars, status=0 ' // for debug, add status=1,toolbar=1 
	newWindow = window.open(url,'wct1',w);
	newWindow.moveBy(5,5);
	newWindow.focus();
	return false;
}
function popwindow2(ww,wh,url) {
	ww = 'width=' + ww; 
	wh = 'height=' + wh;
	w = ww + ',' + wh + ',' + 'resizable, scrollbars, status=0 ' // for debug, add status=1,toolbar=1 
	newWindow = window.open(url,'wct2',w);
	newWindow.moveBy(5,5);
	newWindow.focus();
	return false;
}
function popwindow3(ww,wh,url,wname) {
	ww = 'width=' + ww; 
	wh = 'height=' + wh;
	w = ww + ',' + wh + ',' + 'resizable, scrollbars, status=1 ' // for debug, add status=1,toolbar=1 
	newWindow = window.open(url,wname,w);
	newWindow.moveBy(5,5);
	newWindow.focus();
	return false;
}
