/******************************************************************************
* bsImage.js
*******************************************************************************

*******************************************************************************
*                                                                             *
* Copyright 2007							      *
*                                                                             *
******************************************************************************/

function bsOpenImagePopup(popupId,url,imgWidth,imgHeight)
{
	var popupInfo = "'" + url + "'";
	popupInfo += ",'" + popupId + "'";
	popupInfo += ",'width=" + imgWidth + ",height=" + imgHeight;
	popupInfo += ",menubar=no, resizable=yes'";
	alert(popupInfo);
	return false;
}
