//*****************************************************************************
// popupWin.js
//*****************************************************************************

function popupOpen(targetURL, winName, x, y, width, height, showScrollbars, canBeSizable, blockLink)
{
	var win = window.open(targetURL, winName, 'width=' + width + ',height=' + height + ',scrollbars=' + showScrollbars + ',resizable=' + canBeSizable + ',screenX=' + x + ',screenY=' + y + ',left=' + x + ',top=' + y);
	win.focus();
	return (blockLink == 'no');
}


function popupOpen_Center(targetURL, winName, width, height, showScrollbars, canBeSizable, blockLink)
{
	var x, y;
	
	x = (screen.width - width) / 2;
	y = (screen.height - height) / 2;
	
	return popupOpen(targetURL, winName, x, y, width, height, showScrollbars, canBeSizable, blockLink);
}

function popupOpen_Dialog(targetURL, winName, width, height, blockLink)
{
	return popupOpen_Center(targetURL, winName, width, height, 'no', 'no', blockLink);
}


