var Context = {
MODULE_ACCESSOR:'module',
ACTION_ACCESSOR:'action',
CALLER_MODULE:'website',
CALLER_ACTION:'Display',
W_HOST_PREFIX:'http://',
W_HOST:'www.providom.fr',
UIHOST_PREFIX:'http://',
UIHOST:'www.providom.fr',
UIBASEURL:'http://www.providom.fr',
W_SIGNED_FLAG:'signedView=1',
inDragSession:false,
W_LANG:'fr',
FORWARD_TO_MODULE:'fmodule',
FORWARD_TO_ACTION:'faction'};

var K = {
WEBEDIT_MODULE_ACCESSOR:'wemod',
COMPONENT_ACCESSOR:'cmp',
COMPONENT_ID_ACCESSOR:'cmpref',
COMPONENT_LANG_ACCESSOR:'lang',
GENERIC_MODULE_NAME:'generic',
PARENT_ID_ACCESSOR:'parentref',
VALUE_ACCESSOR:'value',
LABEL_ACCESSOR:'label',
TREE_FILTER:'treeFilter',
LANG_ACCESSOR:'lang',
FULL_TREE_CONTENT_ACCESSOR:'fullTreeContent',
LINKED_COMPONENT_ACCESSOR:'lnkcmp'};
//popup function
var g_shopPhotoWindow = null;
function viewShop(id, id2)
{
	if (!id || !(id+'').length)
	{
		return;
	}
	var url = g_shopHost + 'index.php?module=shop&action=DisplayPhoto' + '&shopid=' + id;
	if (g_shopPhotoWindow == null || g_shopPhotoWindow.closed)
	{
		g_shopPhotoWindow = window.open(url, 'g_shopPhotoWindow', 'width=350,height=350,menubar=no,toolbar=no');
	}
	g_shopPhotoWindow.location.href = url;
	g_shopPhotoWindow.focus();
}