function popup(url,iHeight,iWidth) {
	popupWin = window.open(url,'popupImage','height=' + iHeight + ',width=' + iWidth + ',left=100,top=100,dependent=yes,resizable=yes,scrollbars=no');
	window.popupWin.focus();
}

function popupScroll(url,iHeight,iWidth) {
	popupWin = window.open(url,'popupImage','height=' + iHeight + ',width=' + iWidth + ',left=100,top=100,dependent=yes,resizable=yes,scrollbars=yes');
	window.popupWin.focus();
}
