function rd_openSiteCenteredPopUp(title, include_id, width, height, url_addon)
{
	url_addon = (url_addon!=null) ? url_addon:"";
	return popUpCenteredWindow('tpl.popup.php'+"?title="+title+"&data="+include_id+url_addon, width, height) ;
}

function site_preview_image(img, width, height)
{
	width = (width>200) ? width : 200;
	height = (height>200) ? height : 200;
	width = width+50;
	height = height+80;
	if(height>screen.availHeight || width>screen.availWidth)
	{
		$scroll = "1";
	}
	else
	{
		$scroll = "1";
	}
	rd_openSiteCenteredPopUp(rdJSApp.getResourceString('RS_PREVIEW_IMAGE'), "MODAL_IMAGE_PREVEIW", width, height, "&img="+escape(img)+"&scroll="+$scroll);
}