

function click_this(form_name, elmt_name)	{		//plus utilisée
	document.eval(form_name).eval(elmt_name).click();
}

function SetCookie (name, value)	{
   var argv = SetCookie.arguments;
   var argc = SetCookie.arguments.length;
   var expires = (argc > 2) ? argv[2] : null;
   var path = (argc > 3) ? argv[3] : null;
   var domain = (argc > 4) ? argv[4] : null;
   var secure = (argc > 5) ? argv[5] : false;
   document.cookie = name + "=" + escape (value) +
   ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
   ((path == null) ? "" : ("; path=" + path)) +
   ((domain == null) ? "" : ("; domain=" + domain)) +
   ((secure == true) ? "; secure" : "");
}

function verif_create1(cookie_name,cookie_value)	{
	SetCookie (cookie_name,cookie_value);
	return true;
}

function opewincookie()
{
window.open('./cookie.php','cookies','directories=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width=730,height=265')
}