added gharbeia.net to 5_published
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; utf-8">
|
||||
<title>Java MSX Emulator</title>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<applet code="MsxEmu" width="256" height="192">
|
||||
<script type="text/javascript">
|
||||
//var requested = self.location.search.substr(1);
|
||||
//document.write('<param name="rom" value="' + self.location.search.substr(1) + '">');
|
||||
</script>
|
||||
<param name="rom" value=".rom/nemesis.rom">
|
||||
</applet>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; utf-8">
|
||||
<title>محاكي إم.إس.إكس على جافا</title>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<applet code="MsxEmu" width="256" height="192"><param name="rom" value="zanac.rom"></applet>
|
||||
<p>انقر داخل المربع واضغط مسافة</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 315 KiB |
|
After Width: | Height: | Size: 219 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 9.8 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 253 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 217 KiB |
|
After Width: | Height: | Size: 57 KiB |
@@ -0,0 +1,293 @@
|
||||
//v1.7
|
||||
// Flash Player Version Detection
|
||||
// Detect Client Browser type
|
||||
// Copyright 2005-2007 Adobe Systems Incorporated. All rights reserved.
|
||||
var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
|
||||
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
|
||||
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
|
||||
|
||||
function ControlVersion()
|
||||
{
|
||||
var version;
|
||||
var axo;
|
||||
var e;
|
||||
|
||||
// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
|
||||
|
||||
try {
|
||||
// version will be set for 7.X or greater players
|
||||
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
|
||||
version = axo.GetVariable("$version");
|
||||
} catch (e) {
|
||||
}
|
||||
|
||||
if (!version)
|
||||
{
|
||||
try {
|
||||
// version will be set for 6.X players only
|
||||
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
|
||||
|
||||
// installed player is some revision of 6.0
|
||||
// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
|
||||
// so we have to be careful.
|
||||
|
||||
// default to the first public version
|
||||
version = "WIN 6,0,21,0";
|
||||
|
||||
// throws if AllowScripAccess does not exist (introduced in 6.0r47)
|
||||
axo.AllowScriptAccess = "always";
|
||||
|
||||
// safe to call for 6.0r47 or greater
|
||||
version = axo.GetVariable("$version");
|
||||
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
|
||||
if (!version)
|
||||
{
|
||||
try {
|
||||
// version will be set for 4.X or 5.X player
|
||||
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
|
||||
version = axo.GetVariable("$version");
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
|
||||
if (!version)
|
||||
{
|
||||
try {
|
||||
// version will be set for 3.X player
|
||||
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
|
||||
version = "WIN 3,0,18,0";
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
|
||||
if (!version)
|
||||
{
|
||||
try {
|
||||
// version will be set for 2.X player
|
||||
axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
|
||||
version = "WIN 2,0,0,11";
|
||||
} catch (e) {
|
||||
version = -1;
|
||||
}
|
||||
}
|
||||
|
||||
return version;
|
||||
}
|
||||
|
||||
// JavaScript helper required to detect Flash Player PlugIn version information
|
||||
function GetSwfVer(){
|
||||
// NS/Opera version >= 3 check for Flash plugin in plugin array
|
||||
var flashVer = -1;
|
||||
|
||||
if (navigator.plugins != null && navigator.plugins.length > 0) {
|
||||
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
|
||||
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
|
||||
var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
|
||||
var descArray = flashDescription.split(" ");
|
||||
var tempArrayMajor = descArray[2].split(".");
|
||||
var versionMajor = tempArrayMajor[0];
|
||||
var versionMinor = tempArrayMajor[1];
|
||||
var versionRevision = descArray[3];
|
||||
if (versionRevision == "") {
|
||||
versionRevision = descArray[4];
|
||||
}
|
||||
if (versionRevision[0] == "d") {
|
||||
versionRevision = versionRevision.substring(1);
|
||||
} else if (versionRevision[0] == "r") {
|
||||
versionRevision = versionRevision.substring(1);
|
||||
if (versionRevision.indexOf("d") > 0) {
|
||||
versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
|
||||
}
|
||||
}
|
||||
var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
|
||||
}
|
||||
}
|
||||
// MSN/WebTV 2.6 supports Flash 4
|
||||
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
|
||||
// WebTV 2.5 supports Flash 3
|
||||
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
|
||||
// older WebTV supports Flash 2
|
||||
else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
|
||||
else if ( isIE && isWin && !isOpera ) {
|
||||
flashVer = ControlVersion();
|
||||
}
|
||||
return flashVer;
|
||||
}
|
||||
|
||||
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
|
||||
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
|
||||
{
|
||||
versionStr = GetSwfVer();
|
||||
if (versionStr == -1 ) {
|
||||
return false;
|
||||
} else if (versionStr != 0) {
|
||||
if(isIE && isWin && !isOpera) {
|
||||
// Given "WIN 2,0,0,11"
|
||||
tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"]
|
||||
tempString = tempArray[1]; // "2,0,0,11"
|
||||
versionArray = tempString.split(","); // ['2', '0', '0', '11']
|
||||
} else {
|
||||
versionArray = versionStr.split(".");
|
||||
}
|
||||
var versionMajor = versionArray[0];
|
||||
var versionMinor = versionArray[1];
|
||||
var versionRevision = versionArray[2];
|
||||
|
||||
// is the major.revision >= requested major.revision AND the minor version >= requested minor
|
||||
if (versionMajor > parseFloat(reqMajorVer)) {
|
||||
return true;
|
||||
} else if (versionMajor == parseFloat(reqMajorVer)) {
|
||||
if (versionMinor > parseFloat(reqMinorVer))
|
||||
return true;
|
||||
else if (versionMinor == parseFloat(reqMinorVer)) {
|
||||
if (versionRevision >= parseFloat(reqRevision))
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function AC_AddExtension(src, ext)
|
||||
{
|
||||
if (src.indexOf('?') != -1)
|
||||
return src.replace(/\?/, ext+'?');
|
||||
else
|
||||
return src + ext;
|
||||
}
|
||||
|
||||
function AC_Generateobj(objAttrs, params, embedAttrs)
|
||||
{
|
||||
var str = '';
|
||||
if (isIE && isWin && !isOpera)
|
||||
{
|
||||
str += '<object ';
|
||||
for (var i in objAttrs)
|
||||
{
|
||||
str += i + '="' + objAttrs[i] + '" ';
|
||||
}
|
||||
str += '>';
|
||||
for (var i in params)
|
||||
{
|
||||
str += '<param name="' + i + '" value="' + params[i] + '" /> ';
|
||||
}
|
||||
str += '</object>';
|
||||
}
|
||||
else
|
||||
{
|
||||
str += '<embed id="egypt" ';
|
||||
for (var i in embedAttrs)
|
||||
{
|
||||
str += i + '="' + embedAttrs[i] + '" ';
|
||||
}
|
||||
str += '> </embed>';
|
||||
}
|
||||
|
||||
|
||||
document.write(str);
|
||||
}
|
||||
|
||||
function AC_FL_RunContent(){
|
||||
var ret =
|
||||
AC_GetArgs
|
||||
( arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
|
||||
, "application/x-shockwave-flash"
|
||||
);
|
||||
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
|
||||
}
|
||||
|
||||
function AC_SW_RunContent(){
|
||||
var ret =
|
||||
AC_GetArgs
|
||||
( arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
|
||||
, null
|
||||
);
|
||||
AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
|
||||
}
|
||||
|
||||
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
|
||||
var ret = new Object();
|
||||
ret.embedAttrs = new Object();
|
||||
ret.params = new Object();
|
||||
ret.objAttrs = new Object();
|
||||
for (var i=0; i < args.length; i=i+2){
|
||||
var currArg = args[i].toLowerCase();
|
||||
|
||||
switch (currArg){
|
||||
case "classid":
|
||||
break;
|
||||
case "pluginspage":
|
||||
ret.embedAttrs[args[i]] = args[i+1];
|
||||
break;
|
||||
case "src":
|
||||
case "movie":
|
||||
args[i+1] = AC_AddExtension(args[i+1], ext);
|
||||
ret.embedAttrs["src"] = args[i+1];
|
||||
ret.params[srcParamName] = args[i+1];
|
||||
break;
|
||||
case "onafterupdate":
|
||||
case "onbeforeupdate":
|
||||
case "onblur":
|
||||
case "oncellchange":
|
||||
case "onclick":
|
||||
case "ondblClick":
|
||||
case "ondrag":
|
||||
case "ondragend":
|
||||
case "ondragenter":
|
||||
case "ondragleave":
|
||||
case "ondragover":
|
||||
case "ondrop":
|
||||
case "onfinish":
|
||||
case "onfocus":
|
||||
case "onhelp":
|
||||
case "onmousedown":
|
||||
case "onmouseup":
|
||||
case "onmouseover":
|
||||
case "onmousemove":
|
||||
case "onmouseout":
|
||||
case "onkeypress":
|
||||
case "onkeydown":
|
||||
case "onkeyup":
|
||||
case "onload":
|
||||
case "onlosecapture":
|
||||
case "onpropertychange":
|
||||
case "onreadystatechange":
|
||||
case "onrowsdelete":
|
||||
case "onrowenter":
|
||||
case "onrowexit":
|
||||
case "onrowsinserted":
|
||||
case "onstart":
|
||||
case "onscroll":
|
||||
case "onbeforeeditfocus":
|
||||
case "onactivate":
|
||||
case "onbeforedeactivate":
|
||||
case "ondeactivate":
|
||||
case "type":
|
||||
case "codebase":
|
||||
case "id":
|
||||
ret.objAttrs[args[i]] = args[i+1];
|
||||
break;
|
||||
case "width":
|
||||
case "height":
|
||||
case "align":
|
||||
case "vspace":
|
||||
case "hspace":
|
||||
case "class":
|
||||
case "title":
|
||||
case "accesskey":
|
||||
case "name":
|
||||
case "tabindex":
|
||||
ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
|
||||
break;
|
||||
default:
|
||||
ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
|
||||
}
|
||||
}
|
||||
ret.objAttrs["classid"] = classid;
|
||||
if (mimeType) ret.embedAttrs["type"] = mimeType;
|
||||
return ret;
|
||||
}
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 7.1 KiB |
@@ -0,0 +1,536 @@
|
||||
function WebForm_PostBackOptions(eventTarget, eventArgument, validation, validationGroup, actionUrl, trackFocus, clientSubmit) {
|
||||
this.eventTarget = eventTarget;
|
||||
this.eventArgument = eventArgument;
|
||||
this.validation = validation;
|
||||
this.validationGroup = validationGroup;
|
||||
this.actionUrl = actionUrl;
|
||||
this.trackFocus = trackFocus;
|
||||
this.clientSubmit = clientSubmit;
|
||||
}
|
||||
function WebForm_DoPostBackWithOptions(options) {
|
||||
var validationResult = true;
|
||||
if (options.validation) {
|
||||
if (typeof(Page_ClientValidate) == 'function') {
|
||||
validationResult = Page_ClientValidate(options.validationGroup);
|
||||
}
|
||||
}
|
||||
if (validationResult) {
|
||||
if ((typeof(options.actionUrl) != "undefined") && (options.actionUrl != null) && (options.actionUrl.length > 0)) {
|
||||
theForm.action = options.actionUrl;
|
||||
}
|
||||
if (options.trackFocus) {
|
||||
var lastFocus = theForm.elements["__LASTFOCUS"];
|
||||
if ((typeof(lastFocus) != "undefined") && (lastFocus != null)) {
|
||||
if (typeof(document.activeElement) == "undefined") {
|
||||
lastFocus.value = options.eventTarget;
|
||||
}
|
||||
else {
|
||||
var active = document.activeElement;
|
||||
if ((typeof(active) != "undefined") && (active != null)) {
|
||||
if ((typeof(active.id) != "undefined") && (active.id != null) && (active.id.length > 0)) {
|
||||
lastFocus.value = active.id;
|
||||
}
|
||||
else if (typeof(active.name) != "undefined") {
|
||||
lastFocus.value = active.name;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (options.clientSubmit) {
|
||||
__doPostBack(options.eventTarget, options.eventArgument);
|
||||
}
|
||||
}
|
||||
var __pendingCallbacks = new Array();
|
||||
var __synchronousCallBackIndex = -1;
|
||||
function WebForm_DoCallback(eventTarget, eventArgument, eventCallback, context, errorCallback, useAsync) {
|
||||
var postData = __theFormPostData +
|
||||
"__CALLBACKID=" + WebForm_EncodeCallback(eventTarget) +
|
||||
"&__CALLBACKPARAM=" + WebForm_EncodeCallback(eventArgument);
|
||||
if (theForm["__EVENTVALIDATION"]) {
|
||||
postData += "&__EVENTVALIDATION=" + WebForm_EncodeCallback(theForm["__EVENTVALIDATION"].value);
|
||||
}
|
||||
var xmlRequest,e;
|
||||
try {
|
||||
xmlRequest = new XMLHttpRequest();
|
||||
}
|
||||
catch(e) {
|
||||
try {
|
||||
xmlRequest = new ActiveXObject("Microsoft.XMLHTTP");
|
||||
}
|
||||
catch(e) {
|
||||
}
|
||||
}
|
||||
var setRequestHeaderMethodExists = true;
|
||||
try {
|
||||
setRequestHeaderMethodExists = (xmlRequest && xmlRequest.setRequestHeader);
|
||||
}
|
||||
catch(e) {}
|
||||
var callback = new Object();
|
||||
callback.eventCallback = eventCallback;
|
||||
callback.context = context;
|
||||
callback.errorCallback = errorCallback;
|
||||
callback.async = useAsync;
|
||||
var callbackIndex = WebForm_FillFirstAvailableSlot(__pendingCallbacks, callback);
|
||||
if (!useAsync) {
|
||||
if (__synchronousCallBackIndex != -1) {
|
||||
__pendingCallbacks[__synchronousCallBackIndex] = null;
|
||||
}
|
||||
__synchronousCallBackIndex = callbackIndex;
|
||||
}
|
||||
if (setRequestHeaderMethodExists) {
|
||||
xmlRequest.onreadystatechange = WebForm_CallbackComplete;
|
||||
callback.xmlRequest = xmlRequest;
|
||||
xmlRequest.open("POST", theForm.action, true);
|
||||
xmlRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
||||
xmlRequest.send(postData);
|
||||
return;
|
||||
}
|
||||
callback.xmlRequest = new Object();
|
||||
var callbackFrameID = "__CALLBACKFRAME" + callbackIndex;
|
||||
var xmlRequestFrame = document.frames[callbackFrameID];
|
||||
if (!xmlRequestFrame) {
|
||||
xmlRequestFrame = document.createElement("IFRAME");
|
||||
xmlRequestFrame.width = "1";
|
||||
xmlRequestFrame.height = "1";
|
||||
xmlRequestFrame.frameBorder = "0";
|
||||
xmlRequestFrame.id = callbackFrameID;
|
||||
xmlRequestFrame.name = callbackFrameID;
|
||||
xmlRequestFrame.style.position = "absolute";
|
||||
xmlRequestFrame.style.top = "-100px"
|
||||
xmlRequestFrame.style.left = "-100px";
|
||||
try {
|
||||
if (callBackFrameUrl) {
|
||||
xmlRequestFrame.src = callBackFrameUrl;
|
||||
}
|
||||
}
|
||||
catch(e) {}
|
||||
document.body.appendChild(xmlRequestFrame);
|
||||
}
|
||||
var interval = window.setInterval(function() {
|
||||
xmlRequestFrame = document.frames[callbackFrameID];
|
||||
if (xmlRequestFrame && xmlRequestFrame.document) {
|
||||
window.clearInterval(interval);
|
||||
xmlRequestFrame.document.write("");
|
||||
xmlRequestFrame.document.close();
|
||||
xmlRequestFrame.document.write('<html><body><form method="post"><input type="hidden" name="__CALLBACKLOADSCRIPT" value="t"></form></body></html>');
|
||||
xmlRequestFrame.document.close();
|
||||
xmlRequestFrame.document.forms[0].action = theForm.action;
|
||||
var count = __theFormPostCollection.length;
|
||||
var element;
|
||||
for (var i = 0; i < count; i++) {
|
||||
element = __theFormPostCollection[i];
|
||||
if (element) {
|
||||
var fieldElement = xmlRequestFrame.document.createElement("INPUT");
|
||||
fieldElement.type = "hidden";
|
||||
fieldElement.name = element.name;
|
||||
fieldElement.value = element.value;
|
||||
xmlRequestFrame.document.forms[0].appendChild(fieldElement);
|
||||
}
|
||||
}
|
||||
var callbackIdFieldElement = xmlRequestFrame.document.createElement("INPUT");
|
||||
callbackIdFieldElement.type = "hidden";
|
||||
callbackIdFieldElement.name = "__CALLBACKID";
|
||||
callbackIdFieldElement.value = eventTarget;
|
||||
xmlRequestFrame.document.forms[0].appendChild(callbackIdFieldElement);
|
||||
var callbackParamFieldElement = xmlRequestFrame.document.createElement("INPUT");
|
||||
callbackParamFieldElement.type = "hidden";
|
||||
callbackParamFieldElement.name = "__CALLBACKPARAM";
|
||||
callbackParamFieldElement.value = eventArgument;
|
||||
xmlRequestFrame.document.forms[0].appendChild(callbackParamFieldElement);
|
||||
if (theForm["__EVENTVALIDATION"]) {
|
||||
var callbackValidationFieldElement = xmlRequestFrame.document.createElement("INPUT");
|
||||
callbackValidationFieldElement.type = "hidden";
|
||||
callbackValidationFieldElement.name = "__EVENTVALIDATION";
|
||||
callbackValidationFieldElement.value = theForm["__EVENTVALIDATION"].value;
|
||||
xmlRequestFrame.document.forms[0].appendChild(callbackValidationFieldElement);
|
||||
}
|
||||
var callbackIndexFieldElement = xmlRequestFrame.document.createElement("INPUT");
|
||||
callbackIndexFieldElement.type = "hidden";
|
||||
callbackIndexFieldElement.name = "__CALLBACKINDEX";
|
||||
callbackIndexFieldElement.value = callbackIndex;
|
||||
xmlRequestFrame.document.forms[0].appendChild(callbackIndexFieldElement);
|
||||
xmlRequestFrame.document.forms[0].submit();
|
||||
}
|
||||
}, 10);
|
||||
}
|
||||
function WebForm_CallbackComplete() {
|
||||
for (i = 0; i < __pendingCallbacks.length; i++) {
|
||||
callbackObject = __pendingCallbacks[i];
|
||||
if (callbackObject && callbackObject.xmlRequest && (callbackObject.xmlRequest.readyState == 4)) {
|
||||
WebForm_ExecuteCallback(callbackObject);
|
||||
if (!__pendingCallbacks[i].async) {
|
||||
__synchronousCallBackIndex = -1;
|
||||
}
|
||||
__pendingCallbacks[i] = null;
|
||||
var callbackFrameID = "__CALLBACKFRAME" + i;
|
||||
var xmlRequestFrame = document.getElementById(callbackFrameID);
|
||||
if (xmlRequestFrame) {
|
||||
xmlRequestFrame.parentNode.removeChild(xmlRequestFrame);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
function WebForm_ExecuteCallback(callbackObject) {
|
||||
var response = callbackObject.xmlRequest.responseText;
|
||||
if (response.charAt(0) == "s") {
|
||||
if ((typeof(callbackObject.eventCallback) != "undefined") && (callbackObject.eventCallback != null)) {
|
||||
callbackObject.eventCallback(response.substring(1), callbackObject.context);
|
||||
}
|
||||
}
|
||||
else if (response.charAt(0) == "e") {
|
||||
if ((typeof(callbackObject.errorCallback) != "undefined") && (callbackObject.errorCallback != null)) {
|
||||
callbackObject.errorCallback(response.substring(1), callbackObject.context);
|
||||
}
|
||||
}
|
||||
else {
|
||||
var separatorIndex = response.indexOf("|");
|
||||
if (separatorIndex != -1) {
|
||||
var validationFieldLength = parseInt(response.substring(0, separatorIndex));
|
||||
if (!isNaN(validationFieldLength)) {
|
||||
var validationField = response.substring(separatorIndex + 1, separatorIndex + validationFieldLength + 1);
|
||||
if (validationField != "") {
|
||||
var validationFieldElement = theForm["__EVENTVALIDATION"];
|
||||
if (!validationFieldElement) {
|
||||
validationFieldElement = document.createElement("INPUT");
|
||||
validationFieldElement.type = "hidden";
|
||||
validationFieldElement.name = "__EVENTVALIDATION";
|
||||
theForm.appendChild(validationFieldElement);
|
||||
}
|
||||
validationFieldElement.value = validationField;
|
||||
}
|
||||
if ((typeof(callbackObject.eventCallback) != "undefined") && (callbackObject.eventCallback != null)) {
|
||||
callbackObject.eventCallback(response.substring(separatorIndex + validationFieldLength + 1), callbackObject.context);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
function WebForm_FillFirstAvailableSlot(array, element) {
|
||||
var i;
|
||||
for (i = 0; i < array.length; i++) {
|
||||
if (!array[i]) break;
|
||||
}
|
||||
array[i] = element;
|
||||
return i;
|
||||
}
|
||||
var __nonMSDOMBrowser = (window.navigator.appName.toLowerCase().indexOf('explorer') == -1);
|
||||
var __theFormPostData = "";
|
||||
var __theFormPostCollection = new Array();
|
||||
function WebForm_InitCallback() {
|
||||
var count = theForm.elements.length;
|
||||
var element;
|
||||
for (var i = 0; i < count; i++) {
|
||||
element = theForm.elements[i];
|
||||
var tagName = element.tagName.toLowerCase();
|
||||
if (tagName == "input") {
|
||||
var type = element.type;
|
||||
if ((type == "text" || type == "hidden" || type == "password" ||
|
||||
((type == "checkbox" || type == "radio") && element.checked)) &&
|
||||
(element.id != "__EVENTVALIDATION")) {
|
||||
WebForm_InitCallbackAddField(element.name, element.value);
|
||||
}
|
||||
}
|
||||
else if (tagName == "select") {
|
||||
var selectCount = element.options.length;
|
||||
for (var j = 0; j < selectCount; j++) {
|
||||
var selectChild = element.options[j];
|
||||
if (selectChild.selected == true) {
|
||||
WebForm_InitCallbackAddField(element.name, element.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (tagName == "textarea") {
|
||||
WebForm_InitCallbackAddField(element.name, element.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
function WebForm_InitCallbackAddField(name, value) {
|
||||
var nameValue = new Object();
|
||||
nameValue.name = name;
|
||||
nameValue.value = value;
|
||||
__theFormPostCollection[__theFormPostCollection.length] = nameValue;
|
||||
__theFormPostData += name + "=" + WebForm_EncodeCallback(value) + "&";
|
||||
}
|
||||
function WebForm_EncodeCallback(parameter) {
|
||||
if (encodeURIComponent) {
|
||||
return encodeURIComponent(parameter);
|
||||
}
|
||||
else {
|
||||
return escape(parameter);
|
||||
}
|
||||
}
|
||||
var __disabledControlArray = new Array();
|
||||
function WebForm_ReEnableControls() {
|
||||
if (typeof(__enabledControlArray) == 'undefined') {
|
||||
return false;
|
||||
}
|
||||
var disabledIndex = 0;
|
||||
for (var i = 0; i < __enabledControlArray.length; i++) {
|
||||
var c;
|
||||
if (__nonMSDOMBrowser) {
|
||||
c = document.getElementById(__enabledControlArray[i]);
|
||||
}
|
||||
else {
|
||||
c = document.all[__enabledControlArray[i]];
|
||||
}
|
||||
if ((typeof(c) != "undefined") && (c != null) && (c.disabled == true)) {
|
||||
c.disabled = false;
|
||||
__disabledControlArray[disabledIndex++] = c;
|
||||
}
|
||||
}
|
||||
setTimeout("WebForm_ReDisableControls()", 0);
|
||||
return true;
|
||||
}
|
||||
function WebForm_ReDisableControls() {
|
||||
for (var i = 0; i < __disabledControlArray.length; i++) {
|
||||
__disabledControlArray[i].disabled = true;
|
||||
}
|
||||
}
|
||||
function WebForm_FireDefaultButton(event, target) {
|
||||
if (event.keyCode == 13 && !(event.srcElement && (event.srcElement.tagName.toLowerCase() == "textarea"))) {
|
||||
var defaultButton;
|
||||
if (__nonMSDOMBrowser) {
|
||||
defaultButton = document.getElementById(target);
|
||||
}
|
||||
else {
|
||||
defaultButton = document.all[target];
|
||||
}
|
||||
if (defaultButton && typeof(defaultButton.click) != "undefined") {
|
||||
defaultButton.click();
|
||||
event.cancelBubble = true;
|
||||
if (event.stopPropagation) event.stopPropagation();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function WebForm_GetScrollX() {
|
||||
if (__nonMSDOMBrowser) {
|
||||
return window.pageXOffset;
|
||||
}
|
||||
else {
|
||||
if (document.documentElement && document.documentElement.scrollLeft) {
|
||||
return document.documentElement.scrollLeft;
|
||||
}
|
||||
else if (document.body) {
|
||||
return document.body.scrollLeft;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
function WebForm_GetScrollY() {
|
||||
if (__nonMSDOMBrowser) {
|
||||
return window.pageYOffset;
|
||||
}
|
||||
else {
|
||||
if (document.documentElement && document.documentElement.scrollTop) {
|
||||
return document.documentElement.scrollTop;
|
||||
}
|
||||
else if (document.body) {
|
||||
return document.body.scrollTop;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
function WebForm_SaveScrollPositionSubmit() {
|
||||
if (__nonMSDOMBrowser) {
|
||||
theForm.elements['__SCROLLPOSITIONY'].value = window.pageYOffset;
|
||||
theForm.elements['__SCROLLPOSITIONX'].value = window.pageXOffset;
|
||||
}
|
||||
else {
|
||||
theForm.__SCROLLPOSITIONX.value = WebForm_GetScrollX();
|
||||
theForm.__SCROLLPOSITIONY.value = WebForm_GetScrollY();
|
||||
}
|
||||
if ((typeof(this.oldSubmit) != "undefined") && (this.oldSubmit != null)) {
|
||||
return this.oldSubmit();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function WebForm_SaveScrollPositionOnSubmit() {
|
||||
theForm.__SCROLLPOSITIONX.value = WebForm_GetScrollX();
|
||||
theForm.__SCROLLPOSITIONY.value = WebForm_GetScrollY();
|
||||
if ((typeof(this.oldOnSubmit) != "undefined") && (this.oldOnSubmit != null)) {
|
||||
return this.oldOnSubmit();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function WebForm_RestoreScrollPosition() {
|
||||
if (__nonMSDOMBrowser) {
|
||||
window.scrollTo(theForm.elements['__SCROLLPOSITIONX'].value, theForm.elements['__SCROLLPOSITIONY'].value);
|
||||
}
|
||||
else {
|
||||
window.scrollTo(theForm.__SCROLLPOSITIONX.value, theForm.__SCROLLPOSITIONY.value);
|
||||
}
|
||||
if ((typeof(theForm.oldOnLoad) != "undefined") && (theForm.oldOnLoad != null)) {
|
||||
return theForm.oldOnLoad();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function WebForm_TextBoxKeyHandler(event) {
|
||||
if (event.keyCode == 13) {
|
||||
var target;
|
||||
if (__nonMSDOMBrowser) {
|
||||
target = event.target;
|
||||
}
|
||||
else {
|
||||
target = event.srcElement;
|
||||
}
|
||||
if ((typeof(target) != "undefined") && (target != null)) {
|
||||
if (typeof(target.onchange) != "undefined") {
|
||||
target.onchange();
|
||||
event.cancelBubble = true;
|
||||
if (event.stopPropagation) event.stopPropagation();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function WebForm_AppendToClassName(element, className) {
|
||||
var current = element.className;
|
||||
if (current) {
|
||||
if (current.charAt(current.length - 1) != ' ') {
|
||||
current += ' ';
|
||||
}
|
||||
current += className;
|
||||
}
|
||||
else {
|
||||
current = className;
|
||||
}
|
||||
element.className = current;
|
||||
}
|
||||
function WebForm_RemoveClassName(element, className) {
|
||||
var current = element.className;
|
||||
if (current) {
|
||||
if (current.substring(current.length - className.length - 1, current.length) == ' ' + className) {
|
||||
element.className = current.substring(0, current.length - className.length - 1);
|
||||
return;
|
||||
}
|
||||
if (current == className) {
|
||||
element.className = "";
|
||||
return;
|
||||
}
|
||||
var index = current.indexOf(' ' + className + ' ');
|
||||
if (index != -1) {
|
||||
element.className = current.substring(0, index) + current.substring(index + className.length + 2, current.length);
|
||||
return;
|
||||
}
|
||||
if (current.substring(0, className.length) == className + ' ') {
|
||||
element.className = current.substring(className.length + 1, current.length);
|
||||
}
|
||||
}
|
||||
}
|
||||
function WebForm_GetElementById(elementId) {
|
||||
if (document.getElementById) {
|
||||
return document.getElementById(elementId);
|
||||
}
|
||||
else if (document.all) {
|
||||
return document.all[elementId];
|
||||
}
|
||||
else return null;
|
||||
}
|
||||
function WebForm_GetElementByTagName(element, tagName) {
|
||||
var elements = WebForm_GetElementsByTagName(element, tagName);
|
||||
if (elements && elements.length > 0) {
|
||||
return elements[0];
|
||||
}
|
||||
else return null;
|
||||
}
|
||||
function WebForm_GetElementsByTagName(element, tagName) {
|
||||
if (element && tagName) {
|
||||
if (element.getElementsByTagName) {
|
||||
return element.getElementsByTagName(tagName);
|
||||
}
|
||||
if (element.all && element.all.tags) {
|
||||
return element.all.tags(tagName);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function WebForm_GetElementDir(element) {
|
||||
if (element) {
|
||||
if (element.dir) {
|
||||
return element.dir;
|
||||
}
|
||||
return WebForm_GetElementDir(element.parentNode);
|
||||
}
|
||||
return "ltr";
|
||||
}
|
||||
function WebForm_GetElementPosition(element) {
|
||||
var result = new Object();
|
||||
result.x = 0;
|
||||
result.y = 0;
|
||||
result.width = 0;
|
||||
result.height = 0;
|
||||
if (element.offsetParent) {
|
||||
result.x = element.offsetLeft;
|
||||
result.y = element.offsetTop;
|
||||
var parent = element.offsetParent;
|
||||
while (parent) {
|
||||
result.x += parent.offsetLeft;
|
||||
result.y += parent.offsetTop;
|
||||
var parentTagName = parent.tagName.toLowerCase();
|
||||
if (parentTagName != "table" &&
|
||||
parentTagName != "body" &&
|
||||
parentTagName != "html" &&
|
||||
parentTagName != "div" &&
|
||||
parent.clientTop &&
|
||||
parent.clientLeft) {
|
||||
result.x += parent.clientLeft;
|
||||
result.y += parent.clientTop;
|
||||
}
|
||||
parent = parent.offsetParent;
|
||||
}
|
||||
}
|
||||
else if (element.left && element.top) {
|
||||
result.x = element.left;
|
||||
result.y = element.top;
|
||||
}
|
||||
else {
|
||||
if (element.x) {
|
||||
result.x = element.x;
|
||||
}
|
||||
if (element.y) {
|
||||
result.y = element.y;
|
||||
}
|
||||
}
|
||||
if (element.offsetWidth && element.offsetHeight) {
|
||||
result.width = element.offsetWidth;
|
||||
result.height = element.offsetHeight;
|
||||
}
|
||||
else if (element.style && element.style.pixelWidth && element.style.pixelHeight) {
|
||||
result.width = element.style.pixelWidth;
|
||||
result.height = element.style.pixelHeight;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
function WebForm_GetParentByTagName(element, tagName) {
|
||||
var parent = element.parentNode;
|
||||
var upperTagName = tagName.toUpperCase();
|
||||
while (parent && (parent.tagName.toUpperCase() != upperTagName)) {
|
||||
parent = parent.parentNode ? parent.parentNode : parent.parentElement;
|
||||
}
|
||||
return parent;
|
||||
}
|
||||
function WebForm_SetElementHeight(element, height) {
|
||||
if (element && element.style) {
|
||||
element.style.height = height + "px";
|
||||
}
|
||||
}
|
||||
function WebForm_SetElementWidth(element, width) {
|
||||
if (element && element.style) {
|
||||
element.style.width = width + "px";
|
||||
}
|
||||
}
|
||||
function WebForm_SetElementX(element, x) {
|
||||
if (element && element.style) {
|
||||
element.style.left = x + "px";
|
||||
}
|
||||
}
|
||||
function WebForm_SetElementY(element, y) {
|
||||
if (element && element.style) {
|
||||
element.style.top = y + "px";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,568 @@
|
||||
var Page_ValidationVer = "125";
|
||||
var Page_IsValid = true;
|
||||
var Page_BlockSubmit = false;
|
||||
var Page_InvalidControlToBeFocused = null;
|
||||
function ValidatorUpdateDisplay(val) {
|
||||
if (typeof(val.display) == "string") {
|
||||
if (val.display == "None") {
|
||||
return;
|
||||
}
|
||||
if (val.display == "Dynamic") {
|
||||
val.style.display = val.isvalid ? "none" : "inline";
|
||||
return;
|
||||
}
|
||||
}
|
||||
if ((navigator.userAgent.indexOf("Mac") > -1) &&
|
||||
(navigator.userAgent.indexOf("MSIE") > -1)) {
|
||||
val.style.display = "inline";
|
||||
}
|
||||
val.style.visibility = val.isvalid ? "hidden" : "visible";
|
||||
}
|
||||
function ValidatorUpdateIsValid() {
|
||||
Page_IsValid = AllValidatorsValid(Page_Validators);
|
||||
}
|
||||
function AllValidatorsValid(validators) {
|
||||
if ((typeof(validators) != "undefined") && (validators != null)) {
|
||||
var i;
|
||||
for (i = 0; i < validators.length; i++) {
|
||||
if (!validators[i].isvalid) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function ValidatorHookupControlID(controlID, val) {
|
||||
if (typeof(controlID) != "string") {
|
||||
return;
|
||||
}
|
||||
var ctrl = document.getElementById(controlID);
|
||||
if ((typeof(ctrl) != "undefined") && (ctrl != null)) {
|
||||
ValidatorHookupControl(ctrl, val);
|
||||
}
|
||||
else {
|
||||
val.isvalid = true;
|
||||
val.enabled = false;
|
||||
}
|
||||
}
|
||||
function ValidatorHookupControl(control, val) {
|
||||
if (typeof(control.tagName) != "string") {
|
||||
return;
|
||||
}
|
||||
if (control.tagName != "INPUT" && control.tagName != "TEXTAREA" && control.tagName != "SELECT") {
|
||||
var i;
|
||||
for (i = 0; i < control.childNodes.length; i++) {
|
||||
ValidatorHookupControl(control.childNodes[i], val);
|
||||
}
|
||||
return;
|
||||
}
|
||||
else {
|
||||
if (typeof(control.Validators) == "undefined") {
|
||||
control.Validators = new Array;
|
||||
var eventType;
|
||||
if (control.type == "radio") {
|
||||
eventType = "onclick";
|
||||
} else {
|
||||
eventType = "onchange";
|
||||
if (typeof(val.focusOnError) == "string" && val.focusOnError == "t") {
|
||||
ValidatorHookupEvent(control, "onblur", "ValidatedControlOnBlur(event); ");
|
||||
}
|
||||
}
|
||||
ValidatorHookupEvent(control, eventType, "ValidatorOnChange(event); ");
|
||||
if (control.type == "text" ||
|
||||
control.type == "password" ||
|
||||
control.type == "file") {
|
||||
ValidatorHookupEvent(control, "onkeypress",
|
||||
"if (!ValidatedTextBoxOnKeyPress(event)) { event.cancelBubble = true; if (event.stopPropagation) event.stopPropagation(); return false; } ");
|
||||
}
|
||||
}
|
||||
control.Validators[control.Validators.length] = val;
|
||||
}
|
||||
}
|
||||
function ValidatorHookupEvent(control, eventType, functionPrefix) {
|
||||
var ev;
|
||||
eval("ev = control." + eventType + ";");
|
||||
if (typeof(ev) == "function") {
|
||||
ev = ev.toString();
|
||||
ev = ev.substring(ev.indexOf("{") + 1, ev.lastIndexOf("}"));
|
||||
}
|
||||
else {
|
||||
ev = "";
|
||||
}
|
||||
var func;
|
||||
if (navigator.appName.toLowerCase().indexOf('explorer') > -1) {
|
||||
func = new Function(functionPrefix + " " + ev);
|
||||
}
|
||||
else {
|
||||
func = new Function("event", functionPrefix + " " + ev);
|
||||
}
|
||||
eval("control." + eventType + " = func;");
|
||||
}
|
||||
function ValidatorGetValue(id) {
|
||||
var control;
|
||||
control = document.getElementById(id);
|
||||
if (typeof(control.value) == "string") {
|
||||
return control.value;
|
||||
}
|
||||
return ValidatorGetValueRecursive(control);
|
||||
}
|
||||
function ValidatorGetValueRecursive(control)
|
||||
{
|
||||
if (typeof(control.value) == "string" && (control.type != "radio" || control.checked == true)) {
|
||||
return control.value;
|
||||
}
|
||||
var i, val;
|
||||
for (i = 0; i<control.childNodes.length; i++) {
|
||||
val = ValidatorGetValueRecursive(control.childNodes[i]);
|
||||
if (val != "") return val;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
function Page_ClientValidate(validationGroup) {
|
||||
Page_InvalidControlToBeFocused = null;
|
||||
if (typeof(Page_Validators) == "undefined") {
|
||||
return true;
|
||||
}
|
||||
var i;
|
||||
for (i = 0; i < Page_Validators.length; i++) {
|
||||
ValidatorValidate(Page_Validators[i], validationGroup, null);
|
||||
}
|
||||
ValidatorUpdateIsValid();
|
||||
ValidationSummaryOnSubmit(validationGroup);
|
||||
Page_BlockSubmit = !Page_IsValid;
|
||||
return Page_IsValid;
|
||||
}
|
||||
function ValidatorCommonOnSubmit() {
|
||||
Page_InvalidControlToBeFocused = null;
|
||||
var result = !Page_BlockSubmit;
|
||||
if ((typeof(window.event) != "undefined") && (window.event != null)) {
|
||||
window.event.returnValue = result;
|
||||
}
|
||||
Page_BlockSubmit = false;
|
||||
return result;
|
||||
}
|
||||
function ValidatorEnable(val, enable) {
|
||||
val.enabled = (enable != false);
|
||||
ValidatorValidate(val);
|
||||
ValidatorUpdateIsValid();
|
||||
}
|
||||
function ValidatorOnChange(event) {
|
||||
if (!event) {
|
||||
event = window.event;
|
||||
}
|
||||
Page_InvalidControlToBeFocused = null;
|
||||
var targetedControl;
|
||||
if ((typeof(event.srcElement) != "undefined") && (event.srcElement != null)) {
|
||||
targetedControl = event.srcElement;
|
||||
}
|
||||
else {
|
||||
targetedControl = event.target;
|
||||
}
|
||||
var vals;
|
||||
if (typeof(targetedControl.Validators) != "undefined") {
|
||||
vals = targetedControl.Validators;
|
||||
}
|
||||
else {
|
||||
if (targetedControl.tagName.toLowerCase() == "label") {
|
||||
targetedControl = document.getElementById(targetedControl.htmlFor);
|
||||
vals = targetedControl.Validators;
|
||||
}
|
||||
}
|
||||
var i;
|
||||
for (i = 0; i < vals.length; i++) {
|
||||
ValidatorValidate(vals[i], null, event);
|
||||
}
|
||||
ValidatorUpdateIsValid();
|
||||
}
|
||||
function ValidatedTextBoxOnKeyPress(event) {
|
||||
if (event.keyCode == 13) {
|
||||
ValidatorOnChange(event);
|
||||
var vals;
|
||||
if ((typeof(event.srcElement) != "undefined") && (event.srcElement != null)) {
|
||||
vals = event.srcElement.Validators;
|
||||
}
|
||||
else {
|
||||
vals = event.target.Validators;
|
||||
}
|
||||
return AllValidatorsValid(vals);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function ValidatedControlOnBlur(event) {
|
||||
var control;
|
||||
if ((typeof(event.srcElement) != "undefined") && (event.srcElement != null)) {
|
||||
control = event.srcElement;
|
||||
}
|
||||
else {
|
||||
control = event.target;
|
||||
}
|
||||
if ((typeof(control) != "undefined") && (control != null) && (Page_InvalidControlToBeFocused == control)) {
|
||||
control.focus();
|
||||
Page_InvalidControlToBeFocused = null;
|
||||
}
|
||||
}
|
||||
function ValidatorValidate(val, validationGroup, event) {
|
||||
val.isvalid = true;
|
||||
if ((typeof(val.enabled) == "undefined" || val.enabled != false) && IsValidationGroupMatch(val, validationGroup)) {
|
||||
if (typeof(val.evaluationfunction) == "function") {
|
||||
val.isvalid = val.evaluationfunction(val);
|
||||
if (!val.isvalid && Page_InvalidControlToBeFocused == null &&
|
||||
typeof(val.focusOnError) == "string" && val.focusOnError == "t") {
|
||||
ValidatorSetFocus(val, event);
|
||||
}
|
||||
}
|
||||
}
|
||||
ValidatorUpdateDisplay(val);
|
||||
}
|
||||
function ValidatorSetFocus(val, event) {
|
||||
var ctrl;
|
||||
if (typeof(val.controlhookup) == "string") {
|
||||
var eventCtrl;
|
||||
if ((typeof(event) != "undefined") && (event != null)) {
|
||||
if ((typeof(event.srcElement) != "undefined") && (event.srcElement != null)) {
|
||||
eventCtrl = event.srcElement;
|
||||
}
|
||||
else {
|
||||
eventCtrl = event.target;
|
||||
}
|
||||
}
|
||||
if ((typeof(eventCtrl) != "undefined") && (eventCtrl != null) &&
|
||||
(typeof(eventCtrl.id) == "string") &&
|
||||
(eventCtrl.id == val.controlhookup)) {
|
||||
ctrl = eventCtrl;
|
||||
}
|
||||
}
|
||||
if ((typeof(ctrl) == "undefined") || (ctrl == null)) {
|
||||
ctrl = document.getElementById(val.controltovalidate);
|
||||
}
|
||||
if ((typeof(ctrl) != "undefined") && (ctrl != null) &&
|
||||
(ctrl.tagName.toLowerCase() != "table" || (typeof(event) == "undefined") || (event == null)) &&
|
||||
((ctrl.tagName.toLowerCase() != "input") || (ctrl.type.toLowerCase() != "hidden")) &&
|
||||
(typeof(ctrl.disabled) == "undefined" || ctrl.disabled == null || ctrl.disabled == false) &&
|
||||
(typeof(ctrl.visible) == "undefined" || ctrl.visible == null || ctrl.visible != false) &&
|
||||
(IsInVisibleContainer(ctrl))) {
|
||||
if (ctrl.tagName.toLowerCase() == "table" &&
|
||||
(typeof(__nonMSDOMBrowser) == "undefined" || __nonMSDOMBrowser)) {
|
||||
var inputElements = ctrl.getElementsByTagName("input");
|
||||
var lastInputElement = inputElements[inputElements.length -1];
|
||||
if (lastInputElement != null) {
|
||||
ctrl = lastInputElement;
|
||||
}
|
||||
}
|
||||
if (typeof(ctrl.focus) != "undefined" && ctrl.focus != null) {
|
||||
ctrl.focus();
|
||||
Page_InvalidControlToBeFocused = ctrl;
|
||||
}
|
||||
}
|
||||
}
|
||||
function IsInVisibleContainer(ctrl) {
|
||||
if (typeof(ctrl.style) != "undefined" &&
|
||||
( ( typeof(ctrl.style.display) != "undefined" &&
|
||||
ctrl.style.display == "none") ||
|
||||
( typeof(ctrl.style.visibility) != "undefined" &&
|
||||
ctrl.style.visibility == "hidden") ) ) {
|
||||
return false;
|
||||
}
|
||||
else if (typeof(ctrl.parentNode) != "undefined" &&
|
||||
ctrl.parentNode != null &&
|
||||
ctrl.parentNode != ctrl) {
|
||||
return IsInVisibleContainer(ctrl.parentNode);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function IsValidationGroupMatch(control, validationGroup) {
|
||||
if ((typeof(validationGroup) == "undefined") || (validationGroup == null)) {
|
||||
return true;
|
||||
}
|
||||
var controlGroup = "";
|
||||
if (typeof(control.validationGroup) == "string") {
|
||||
controlGroup = control.validationGroup;
|
||||
}
|
||||
return (controlGroup == validationGroup);
|
||||
}
|
||||
function ValidatorOnLoad() {
|
||||
if (typeof(Page_Validators) == "undefined")
|
||||
return;
|
||||
var i, val;
|
||||
for (i = 0; i < Page_Validators.length; i++) {
|
||||
val = Page_Validators[i];
|
||||
if (typeof(val.evaluationfunction) == "string") {
|
||||
eval("val.evaluationfunction = " + val.evaluationfunction + ";");
|
||||
}
|
||||
if (typeof(val.isvalid) == "string") {
|
||||
if (val.isvalid == "False") {
|
||||
val.isvalid = false;
|
||||
Page_IsValid = false;
|
||||
}
|
||||
else {
|
||||
val.isvalid = true;
|
||||
}
|
||||
} else {
|
||||
val.isvalid = true;
|
||||
}
|
||||
if (typeof(val.enabled) == "string") {
|
||||
val.enabled = (val.enabled != "False");
|
||||
}
|
||||
if (typeof(val.controltovalidate) == "string") {
|
||||
ValidatorHookupControlID(val.controltovalidate, val);
|
||||
}
|
||||
if (typeof(val.controlhookup) == "string") {
|
||||
ValidatorHookupControlID(val.controlhookup, val);
|
||||
}
|
||||
}
|
||||
Page_ValidationActive = true;
|
||||
}
|
||||
function ValidatorConvert(op, dataType, val) {
|
||||
function GetFullYear(year) {
|
||||
var twoDigitCutoffYear = val.cutoffyear % 100;
|
||||
var cutoffYearCentury = val.cutoffyear - twoDigitCutoffYear;
|
||||
return ((year > twoDigitCutoffYear) ? (cutoffYearCentury - 100 + year) : (cutoffYearCentury + year));
|
||||
}
|
||||
var num, cleanInput, m, exp;
|
||||
if (dataType == "Integer") {
|
||||
exp = /^\s*[-\+]?\d+\s*$/;
|
||||
if (op.match(exp) == null)
|
||||
return null;
|
||||
num = parseInt(op, 10);
|
||||
return (isNaN(num) ? null : num);
|
||||
}
|
||||
else if(dataType == "Double") {
|
||||
exp = new RegExp("^\\s*([-\\+])?(\\d*)\\" + val.decimalchar + "?(\\d*)\\s*$");
|
||||
m = op.match(exp);
|
||||
if (m == null)
|
||||
return null;
|
||||
if (m[2].length == 0 && m[3].length == 0)
|
||||
return null;
|
||||
cleanInput = (m[1] != null ? m[1] : "") + (m[2].length>0 ? m[2] : "0") + (m[3].length>0 ? "." + m[3] : "");
|
||||
num = parseFloat(cleanInput);
|
||||
return (isNaN(num) ? null : num);
|
||||
}
|
||||
else if (dataType == "Currency") {
|
||||
var hasDigits = (val.digits > 0);
|
||||
var beginGroupSize, subsequentGroupSize;
|
||||
var groupSizeNum = parseInt(val.groupsize, 10);
|
||||
if (!isNaN(groupSizeNum) && groupSizeNum > 0) {
|
||||
beginGroupSize = "{1," + groupSizeNum + "}";
|
||||
subsequentGroupSize = "{" + groupSizeNum + "}";
|
||||
}
|
||||
else {
|
||||
beginGroupSize = subsequentGroupSize = "+";
|
||||
}
|
||||
exp = new RegExp("^\\s*([-\\+])?((\\d" + beginGroupSize + "(\\" + val.groupchar + "\\d" + subsequentGroupSize + ")+)|\\d*)"
|
||||
+ (hasDigits ? "\\" + val.decimalchar + "?(\\d{0," + val.digits + "})" : "")
|
||||
+ "\\s*$");
|
||||
m = op.match(exp);
|
||||
if (m == null)
|
||||
return null;
|
||||
if (m[2].length == 0 && hasDigits && m[5].length == 0)
|
||||
return null;
|
||||
cleanInput = (m[1] != null ? m[1] : "") + m[2].replace(new RegExp("(\\" + val.groupchar + ")", "g"), "") + ((hasDigits && m[5].length > 0) ? "." + m[5] : "");
|
||||
num = parseFloat(cleanInput);
|
||||
return (isNaN(num) ? null : num);
|
||||
}
|
||||
else if (dataType == "Date") {
|
||||
var yearFirstExp = new RegExp("^\\s*((\\d{4})|(\\d{2}))([-/]|\\. ?)(\\d{1,2})\\4(\\d{1,2})\\s*$");
|
||||
m = op.match(yearFirstExp);
|
||||
var day, month, year;
|
||||
if (m != null && (m[2].length == 4 || val.dateorder == "ymd")) {
|
||||
day = m[6];
|
||||
month = m[5];
|
||||
year = (m[2].length == 4) ? m[2] : GetFullYear(parseInt(m[3], 10))
|
||||
}
|
||||
else {
|
||||
if (val.dateorder == "ymd"){
|
||||
return null;
|
||||
}
|
||||
var yearLastExp = new RegExp("^\\s*(\\d{1,2})([-/]|\\. ?)(\\d{1,2})\\2((\\d{4})|(\\d{2}))\\s*$");
|
||||
m = op.match(yearLastExp);
|
||||
if (m == null) {
|
||||
return null;
|
||||
}
|
||||
if (val.dateorder == "mdy") {
|
||||
day = m[3];
|
||||
month = m[1];
|
||||
}
|
||||
else {
|
||||
day = m[1];
|
||||
month = m[3];
|
||||
}
|
||||
year = (m[5].length == 4) ? m[5] : GetFullYear(parseInt(m[6], 10))
|
||||
}
|
||||
month -= 1;
|
||||
var date = new Date(year, month, day);
|
||||
if (year < 100) {
|
||||
date.setFullYear(year);
|
||||
}
|
||||
return (typeof(date) == "object" && year == date.getFullYear() && month == date.getMonth() && day == date.getDate()) ? date.valueOf() : null;
|
||||
}
|
||||
else {
|
||||
return op.toString();
|
||||
}
|
||||
}
|
||||
function ValidatorCompare(operand1, operand2, operator, val) {
|
||||
var dataType = val.type;
|
||||
var op1, op2;
|
||||
if ((op1 = ValidatorConvert(operand1, dataType, val)) == null)
|
||||
return false;
|
||||
if (operator == "DataTypeCheck")
|
||||
return true;
|
||||
if ((op2 = ValidatorConvert(operand2, dataType, val)) == null)
|
||||
return true;
|
||||
switch (operator) {
|
||||
case "NotEqual":
|
||||
return (op1 != op2);
|
||||
case "GreaterThan":
|
||||
return (op1 > op2);
|
||||
case "GreaterThanEqual":
|
||||
return (op1 >= op2);
|
||||
case "LessThan":
|
||||
return (op1 < op2);
|
||||
case "LessThanEqual":
|
||||
return (op1 <= op2);
|
||||
default:
|
||||
return (op1 == op2);
|
||||
}
|
||||
}
|
||||
function CompareValidatorEvaluateIsValid(val) {
|
||||
var value = ValidatorGetValue(val.controltovalidate);
|
||||
if (ValidatorTrim(value).length == 0)
|
||||
return true;
|
||||
var compareTo = "";
|
||||
if ((typeof(val.controltocompare) != "string") ||
|
||||
(typeof(document.getElementById(val.controltocompare)) == "undefined") ||
|
||||
(null == document.getElementById(val.controltocompare))) {
|
||||
if (typeof(val.valuetocompare) == "string") {
|
||||
compareTo = val.valuetocompare;
|
||||
}
|
||||
}
|
||||
else {
|
||||
compareTo = ValidatorGetValue(val.controltocompare);
|
||||
}
|
||||
var operator = "Equal";
|
||||
if (typeof(val.operator) == "string") {
|
||||
operator = val.operator;
|
||||
}
|
||||
return ValidatorCompare(value, compareTo, operator, val);
|
||||
}
|
||||
function CustomValidatorEvaluateIsValid(val) {
|
||||
var value = "";
|
||||
if (typeof(val.controltovalidate) == "string") {
|
||||
value = ValidatorGetValue(val.controltovalidate);
|
||||
if ((ValidatorTrim(value).length == 0) &&
|
||||
((typeof(val.validateemptytext) != "string") || (val.validateemptytext != "true"))) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
var args = { Value:value, IsValid:true };
|
||||
if (typeof(val.clientvalidationfunction) == "string") {
|
||||
eval(val.clientvalidationfunction + "(val, args) ;");
|
||||
}
|
||||
return args.IsValid;
|
||||
}
|
||||
function RegularExpressionValidatorEvaluateIsValid(val) {
|
||||
var value = ValidatorGetValue(val.controltovalidate);
|
||||
if (ValidatorTrim(value).length == 0)
|
||||
return true;
|
||||
var rx = new RegExp(val.validationexpression);
|
||||
var matches = rx.exec(value);
|
||||
return (matches != null && value == matches[0]);
|
||||
}
|
||||
function ValidatorTrim(s) {
|
||||
var m = s.match(/^\s*(\S+(\s+\S+)*)\s*$/);
|
||||
return (m == null) ? "" : m[1];
|
||||
}
|
||||
function RequiredFieldValidatorEvaluateIsValid(val) {
|
||||
return (ValidatorTrim(ValidatorGetValue(val.controltovalidate)) != ValidatorTrim(val.initialvalue))
|
||||
}
|
||||
function RangeValidatorEvaluateIsValid(val) {
|
||||
var value = ValidatorGetValue(val.controltovalidate);
|
||||
if (ValidatorTrim(value).length == 0)
|
||||
return true;
|
||||
return (ValidatorCompare(value, val.minimumvalue, "GreaterThanEqual", val) &&
|
||||
ValidatorCompare(value, val.maximumvalue, "LessThanEqual", val));
|
||||
}
|
||||
function ValidationSummaryOnSubmit(validationGroup) {
|
||||
if (typeof(Page_ValidationSummaries) == "undefined")
|
||||
return;
|
||||
var summary, sums, s;
|
||||
for (sums = 0; sums < Page_ValidationSummaries.length; sums++) {
|
||||
summary = Page_ValidationSummaries[sums];
|
||||
summary.style.display = "none";
|
||||
if (!Page_IsValid && IsValidationGroupMatch(summary, validationGroup)) {
|
||||
var i;
|
||||
if (summary.showsummary != "False") {
|
||||
summary.style.display = "";
|
||||
if (typeof(summary.displaymode) != "string") {
|
||||
summary.displaymode = "BulletList";
|
||||
}
|
||||
switch (summary.displaymode) {
|
||||
case "List":
|
||||
headerSep = "<br>";
|
||||
first = "";
|
||||
pre = "";
|
||||
post = "<br>";
|
||||
end = "";
|
||||
break;
|
||||
case "BulletList":
|
||||
default:
|
||||
headerSep = "";
|
||||
first = "<ul>";
|
||||
pre = "<li>";
|
||||
post = "</li>";
|
||||
end = "</ul>";
|
||||
break;
|
||||
case "SingleParagraph":
|
||||
headerSep = " ";
|
||||
first = "";
|
||||
pre = "";
|
||||
post = " ";
|
||||
end = "<br>";
|
||||
break;
|
||||
}
|
||||
s = "";
|
||||
if (typeof(summary.headertext) == "string") {
|
||||
s += summary.headertext + headerSep;
|
||||
}
|
||||
s += first;
|
||||
for (i=0; i<Page_Validators.length; i++) {
|
||||
if (!Page_Validators[i].isvalid && typeof(Page_Validators[i].errormessage) == "string") {
|
||||
s += pre + Page_Validators[i].errormessage + post;
|
||||
}
|
||||
}
|
||||
s += end;
|
||||
summary.innerHTML = s;
|
||||
window.scrollTo(0,0);
|
||||
}
|
||||
if (summary.showmessagebox == "True") {
|
||||
s = "";
|
||||
if (typeof(summary.headertext) == "string") {
|
||||
s += summary.headertext + "\r\n";
|
||||
}
|
||||
var lastValIndex = Page_Validators.length - 1;
|
||||
for (i=0; i<=lastValIndex; i++) {
|
||||
if (!Page_Validators[i].isvalid && typeof(Page_Validators[i].errormessage) == "string") {
|
||||
switch (summary.displaymode) {
|
||||
case "List":
|
||||
s += Page_Validators[i].errormessage;
|
||||
if (i < lastValIndex) {
|
||||
s += "\r\n";
|
||||
}
|
||||
break;
|
||||
case "BulletList":
|
||||
default:
|
||||
s += "- " + Page_Validators[i].errormessage;
|
||||
if (i < lastValIndex) {
|
||||
s += "\r\n";
|
||||
}
|
||||
break;
|
||||
case "SingleParagraph":
|
||||
s += Page_Validators[i].errormessage + " ";
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
alert(s);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 782 B |
|
After Width: | Height: | Size: 648 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 673 B |
|
After Width: | Height: | Size: 678 B |
@@ -0,0 +1,275 @@
|
||||
/* css */
|
||||
|
||||
/************************** Layout **************************/
|
||||
/** general style and classes **/
|
||||
*,ul.userOption li a{margin:0;padding:0}
|
||||
h1,h2,h3{padding:5px 10px;margin:0;}
|
||||
h3{padding:10px}
|
||||
.clr,.clr1{line-height:3px;height:3px;clear:both}
|
||||
.clr1{line-height:0px;height:0px;}
|
||||
.floatA{float:right}
|
||||
.floatB{float:left}
|
||||
.highlight{width:100%;height:100%;margin:10px 0}
|
||||
.failed,.success{width:90%;padding:5px 0;text-align:center;margin:10px auto;display:block}
|
||||
.black ,.blackor{padding:10px}
|
||||
.orangelist{padding:0 10px;clear:both}
|
||||
.aRight{text-align:right}
|
||||
.aCenter{text-align:center}
|
||||
.blackorMessage{clear:both;width:95%;margin:10px auto;display:block;text-align:center;padding:10px 0}
|
||||
ul.blackor{margin:0 5px;padding:10px 0 10px 30px;width:90%}
|
||||
.activate,.deactivate{width:130px;height:44px;padding:0}
|
||||
.deactivate{width:145px}
|
||||
/** / general style and classes **/
|
||||
/** Ads **/
|
||||
#leaderboard{width:728px;margin:0 auto;display:none}
|
||||
/** /Ads **/
|
||||
/** Structure **/
|
||||
#wrapper,#container{width:750px;height:auto;margin:0 auto 5px auto;}
|
||||
#container{margin:0 auto;border:1px solid #ccc;border-top:none}
|
||||
#header{width:752px;height:140px;}
|
||||
#ZoneA{width:556px;height:100%;float:right;border-left:1px solid #eee}
|
||||
#ZoneB{width:192px;height:auto;float:left}
|
||||
#FeaturedArea{width:556px;height:240px}
|
||||
#registerForm{width:100%}
|
||||
.mainContent{width:100%;height:auto}
|
||||
.main{width:95%;margin:0 10px}
|
||||
.mainB,.mainA{width:49%;float:left;padding:10px 0}
|
||||
.mainA{width:49%}
|
||||
.cardsImg{width:260px;height:auto}
|
||||
.mainA .clip,.mainB .clip{width:100%}
|
||||
.mainA ul{margin:0 30px}
|
||||
.clip{width:192px}
|
||||
.largeClip{width:100%}
|
||||
.clip h1,.clip p,.clip a,.redMessage{margin:0 10px}
|
||||
.clip ul{margin:0 0 0 10px;padding:5px 0 0 0}
|
||||
/*** menu ***/
|
||||
#menu{width:100%;height:22px}
|
||||
#menu a{height:22px;width:100%;width:50px}
|
||||
#menu ul.menuItems li{height:22px;float:left;width:50px;}
|
||||
#menu ul.menuItems li.wide,#menu ul.menuItems li.wide a{width:70px}
|
||||
#menu ul.menuItems li.wider,#menu ul.menuItems li.wider a{width:110px}
|
||||
#menu ul.menuItems{margin:0;padding:0}
|
||||
/*** /menu ***/
|
||||
/*** Login ***/
|
||||
#Login ul.form{width:80%;padding:0;clear:both;margin:0 15px;}
|
||||
#Login ul.form li{clear:both;margin:1px 0}
|
||||
#Login ul.form li.Name{width:60px;float:left;}
|
||||
#Login ul.form li.Value .narrowInput{width:150px}
|
||||
#Login ul.form li.button {width:98%}
|
||||
#Login ul.userOption {width:120px;margin:0 0 0 30px}
|
||||
/*** /Login ***/
|
||||
/*** Serial ***/
|
||||
#SerialLogin{margin:20px auto;width:70%;float:right}
|
||||
#SerialLogin ul.form{width:90%;margin:5px 0;padding:0;clear:both}
|
||||
#SerialLogin ul.form li.Name{width:100px;float:left;}
|
||||
#SerialLogin ul.form li.Value .narrowInput{width:160px;}
|
||||
#SerialLogin ul.form li.button {display:block;width:265px;text-align:right}
|
||||
#SerialLogin ul.form li.Remember{display:none}
|
||||
span.cardBack{width:143px;height:95px;display:block;float:left;margin:10px 4px}
|
||||
/*** /Searial ***/
|
||||
/*** Search ***/
|
||||
#Search ul.form li{padding:5px 0}
|
||||
#Search ul.form{width:90%;margin:5px 0;padding:0;clear:both}
|
||||
#Search ul.form li.Name{width:50px;float:left;}
|
||||
#Search ul.form li.Value .narrowInput{width:160px}
|
||||
#Search ul.form li.button {display:block;width:90%;text-align:right}
|
||||
/*** /Search ***/
|
||||
/*** Helpdesk ***/
|
||||
#helpdesk{width:180px;height:136px;margin:0 auto;padding:3em 0 0 0}
|
||||
#helpdesk ul{width:110px;position:relative;left:80px;top:30px;margin:0;padding:0}
|
||||
/*** / Helpdesk ***/
|
||||
/*** Newprofile ***/
|
||||
#newProfile,.error{width:98%;margin:0 auto;padding:0 3px}
|
||||
#newProfile input,#newProfile select{width:100px;height:18px;float:left}
|
||||
p.label,p.value,div.value{width:100px;float:left;margin:0;padding:5px 7px}
|
||||
#newProfile .wideValue{width:200px}
|
||||
p.value{width:130px}
|
||||
div.value{width:135px}
|
||||
div.value a{width:10px;float:right}
|
||||
div.value input{float:left}
|
||||
p.wide{width:160px}
|
||||
/*** /Newprofile ***/
|
||||
/*** PackageDetails ***/
|
||||
#PackageDetails .largeClip,#Faq .largeClip{margin:15px 0;padding:0 0 5px 0;border-bottom:1px dashed #f60}
|
||||
#PackageDetails .largeClip p img{float:right;width:152px;margin:0 5px 0 0;padding:0}
|
||||
#PackageDetails .largeClip p {float:left;width:100%;padding:10px 0}
|
||||
/*** /PackageDetails ***/
|
||||
/*** FAQ ***/
|
||||
ul.contentList{margin:5px 0 0 10px;width:90%}
|
||||
ul.contentList li{padding:0 10px;width:100%;margin:5px 0}
|
||||
ul#bookmarksList {width:90%}
|
||||
ul#bookmarksList li{padding:0 8px;width:100%;margin:2px 0}
|
||||
/*** /FAQ ***/
|
||||
/*** Resend Activation ***/
|
||||
#ResendActivationCode .btn{margin:0;padding:5px 10px;width:40%}
|
||||
/*** /Resend Activation ***/
|
||||
/*** ForgotPassword ***/
|
||||
#ForgotPassword .textInput,#ForgotPassword select{width:100px;height:18px;float:left;}
|
||||
#ForgotPassword p.label,#ForgotPassword p.value,#ForgotPassword p.btn{width:100px;float:left;margin:0;padding:5px 10px}
|
||||
#ForgotPassword p.label{width:40px}
|
||||
#ForgotPassword p.largeValue {width:200px;padding:0 10px 0 10px}
|
||||
#ForgotPassword p.btn{width:30px;padding:5px 0}
|
||||
#ForgotPassword input.btn{float:left}
|
||||
.wideinput{width:200px}
|
||||
/*** /ForgotPassword ***/
|
||||
/*** Free Sites ***/
|
||||
#freesites{height:70px;width:750px;clear:both}
|
||||
#freesites h1{margin:0 0 0 10px}
|
||||
#freesites ul{margin:0 0 10px 10px}
|
||||
#freesites li{float:left;margin:0 0 0 5px}
|
||||
/*** /Free Sites ***/
|
||||
/*** Map ***/
|
||||
#mapmenu{border:2px solid #f60;text-align:center;width:80%;margin:0 auto;background:#F1F1F1}
|
||||
#mapmenu a:link,#mapmenu a:active,#mapmenu a:hover,#mapmenu a:visited{color:#000;text-decoration:none;padding:0 10px;}
|
||||
/*** /Map ***/
|
||||
/*** Footer ***/
|
||||
#footer{height:20px;margin:5px 0 0 0;clear:both}
|
||||
/*** /Footer ***/
|
||||
/** /Structure **/
|
||||
/************************** / Layout **************************/
|
||||
|
||||
/************************** Decoration **************************/
|
||||
/** general style **/
|
||||
body{background:#fefefe url(../images/bg_image.gif) repeat-x fixed bottom;color:#666}
|
||||
h1,h2,h3{color:#f60;background:url(../images/fac_bult.gif) no-repeat left}
|
||||
.clip a{color:#666}
|
||||
.orange{color:#f60}
|
||||
.orangelist{color:#f60;background:url(../images/fac_bult.gif) no-repeat left}
|
||||
.highlight{background:#fff url(../images/menubg.gif) repeat-x bottom;border:1px solid #ccc}
|
||||
.failed{border:1px solid #f00;color:#f00;background:#fff}
|
||||
.success{border:1px solid green;color:Green;background:#fff}
|
||||
.black{color:#fff;background:#000}
|
||||
.blackor,.blackorMessage{color:#fff;background:#f60;border:2px solid #f90}
|
||||
ul.blackor{list-style-type:disc;list-style-position:outside;}
|
||||
ul.noBullet{list-style:none}
|
||||
.activate{color:#f60;display:block;background:url(../images/true.jpg) no-repeat}
|
||||
.deactivate{color:#ccc;display:block;background:url(../images/false.jpg) no-repeat}
|
||||
/** / general style **/
|
||||
/** Structure **/
|
||||
#wrapper{background:#fff}
|
||||
#header{background:url(../images/header_bgact.gif) repeat-x left top}
|
||||
#ZoneA{border-left:1px solid #eee}
|
||||
#mainA{list-style:none}
|
||||
#mainA li{list-style-image:url(../images/facsmall_bult.gif)}
|
||||
.mainContent{background:#fff url(../Images/mainContentBg.gif) repeat-x top}
|
||||
/*** menu ***/
|
||||
#menu{background:#fff url(../images/menubg.gif) repeat-x bottom;border-top:1px solid #F3F3F3}
|
||||
#menu,#menu a{/*color:#FBEAD0*/color:#999;display:block}
|
||||
ul.menuItems li{text-align:center;border:1px solid #F3F3F3}
|
||||
#menu a:link{text-decoration:none}
|
||||
#menu a:active{text-decoration:none}
|
||||
#menu a:hover{background:#f60 url(../images/hover3.gif) repeat-x top;color:#fff;text-align:center}
|
||||
#menu a:visited{text-decoration:none}
|
||||
.current{background:#000}/*set the current page*/
|
||||
#menu li.current a:link,#menu li.current a:visited,#menu li.current a:hover,#menu li.current a:active
|
||||
{color:#fff}
|
||||
|
||||
ul.menuItems li,ul.userOption{list-style:none;}
|
||||
/*** /menu ***/
|
||||
/*** Login ***/
|
||||
ul.form li,#freesites li{list-style:none}
|
||||
.loginrembtn,#Login ul.form li.button {text-align:right}
|
||||
.clip .narrowInput,#newProfile input{border:1px solid #a6a2a3}
|
||||
input.btn{background:#f60 url(../images/loginbtn.gif) no-repeat top left;color:#fff;cursor:pointer;border:0}
|
||||
.redMessage{color:#f00}
|
||||
ul.userOption li{background:transparant url(../images/box.gif) no-repeat}
|
||||
/*** /Login ***/
|
||||
/*** serial ***/
|
||||
span.cardBack{background:url(../images/cardBack.jpg) no-repeat}
|
||||
/*** /serial ***/
|
||||
/*** Helpdesk ***/
|
||||
#helpdesk{background:url(../images/support.jpg) no-repeat bottom;}
|
||||
#helpdesk ul{list-style-type:none;list-style-position:outside}
|
||||
ul li.head{list-style-image:url(../images/facsmall_bult.gif);}
|
||||
ul li.info{list-style-image:none;}
|
||||
li.Value .narrowInput{background:#fff !important}
|
||||
/*** / Helpdesk ***/
|
||||
/*** Newprofile ***/
|
||||
#newProfile,#newProfile input,select,#ForgotPassword .textInput,#ForgotPassword select{border:1px solid #ccc;color:#A4A2A3}
|
||||
#newProfile{border:0}
|
||||
div.white{background:#fff;}
|
||||
div.grey{background:#F2F2F2;}
|
||||
#newProfile input.btn,#ForgotPassword input.btn{border:0;color:#fff}
|
||||
#newProfile input{background:#fff !important}/* fix firefox default color*/
|
||||
/*** /Newprofile ***/
|
||||
/*** PackageDetails ***/
|
||||
#PackageDetails .largeClip{border-bottom:1px dashed #DFDFDF}
|
||||
a.orangeLink:link,a.orangeLink:active{color:#f60;text-decoration:none}
|
||||
a.orangeLink:hover{color:#FD8434;text-decoration:none}
|
||||
a.orangeLink:visited{color:#FD8434;text-decoration:none}
|
||||
/*** /PackageDetails ***/
|
||||
/*** FAQ ***/
|
||||
ul.contentList li{background:url(../images/box.gif) no-repeat left 15%;list-style:none}
|
||||
ul#bookmarksList li{background:url(../images/box.gif) no-repeat left 50%;list-style:none}
|
||||
ul#bookmarksList li a:link,ul#bookmarksList li a:visited,ul#bookmarksList li a:active,ul#bookmarksList li a:hover{color:#999}
|
||||
/*** /FAQ ***/
|
||||
/*** Resend Activation ***/
|
||||
#ResendActivationCode{}
|
||||
/*** /Resend Activation ***/
|
||||
/*** Freesites ***/
|
||||
#freesites{background:#fff url(../images/loginarea_bg.gif) repeat-x bottom}
|
||||
/*** /Freesites ***/
|
||||
/*** Footer ***/
|
||||
#footer{color:#747474;text-align:center;vertical-align:middle;}
|
||||
/*** / Footer ***/
|
||||
/** /Structure **/
|
||||
/************************** / Decoration **************************/
|
||||
|
||||
/************************** Typography **************************/
|
||||
/** general style **/
|
||||
body{font:75%/1.4 Verdana, Arial, Helvetica, sans-serif}
|
||||
h1,h2,h3{font:bold 1em/1.5 verdana;}
|
||||
.smalltextsize{font:normal xx-small verdana}
|
||||
.activate,.deactivate{font:bold large verdana}
|
||||
p.Justify{text-align:justify}
|
||||
/** / general style **/
|
||||
/** Structure **/
|
||||
#mainA li{font:normal 1em/1.5 verdana}
|
||||
/*** menu ***/
|
||||
#menu{font:bold 0.9em/1.5 verdana}
|
||||
/*** /menu ***/
|
||||
/*** Login ***/
|
||||
.btn {font:bold 12px verdana}
|
||||
.redMessage{font:bold 10px verdana}
|
||||
/*** /Login ***/
|
||||
/*** User Status ***/
|
||||
#userStatus .orange{font:bold 3em verdana}
|
||||
/*** /User Status ***/
|
||||
/*** Helpdesk ***/
|
||||
#helpdesk ul li.conthead,#helpdesk ul li.continfo{font:bold 1em/1.5 verdana;}
|
||||
#helpdesk ul li.continfo{font-weight:normal}
|
||||
/*** /Helpdesk ***/
|
||||
/*** Newprofile ***/
|
||||
#newProfile input,select{font:bold x-small verdana}
|
||||
p.label,.example{font:bold xx-small verdana;}
|
||||
/*** /Newprofile ***/
|
||||
/*** PackageDetails ***/
|
||||
a.orangeLink:link,a.orangeLink:active,a.orangeLink:hover,a.orangeLink:visited{font:bold 0.8em/1.5 verdana;}
|
||||
/*** /PackageDetails ***/
|
||||
/*** FAQ ***/
|
||||
#Faq h5.orangelist,#Terms h5.orangelist{font:bold 90% verdana}
|
||||
ul#bookmarksList li a{font:normal 90% verdana}
|
||||
/*** FAQ ***/
|
||||
/*** Footer ***/
|
||||
#footer{font:normal 11px/1.5 verdana;}
|
||||
/*** /Footer ***/
|
||||
/** /Structure **/
|
||||
/************************** / Typography **************************/
|
||||
/*data grid */
|
||||
.datagrid{background:#fff;width:300px;border:none;margin:10px 0 0 0;}
|
||||
.datagrid td{margin:0;padding:0;border-left:2px solid #fff;border-top:1px solid #d0d0d0;border-bottom:none;border-right:none}
|
||||
.selecteditemstyle,.altstyle,.itemstyle{font:normal 10px verdana;background:#f60}
|
||||
tr.headerstyle td {background:#fff;font:bold 9px verdana;color:#f60;padding:5px 0px;border:1px solid #f60;border-right:none;border-left:none;vertical-align:top;text-align:left}
|
||||
tr.headerstyle th {background:#fff;font:bold 9px verdana;color:#f60;padding:5px 0px;border:1px solid #f60;border-right:none;border-left:none;vertical-align:top;text-align:left}
|
||||
tr.altstyle td{color:#747474;background:#efefef;text-align:left;padding:5px 0px;}
|
||||
tr.altstyle td a,tr.itemstyle td a{font-weight:bold;color:#747474}
|
||||
tr.itemstyle td{text-align:left;color:#747474;background:#f9f9f9 ;font-weight:normal;text-align:left;padding:10px 0px}
|
||||
tr.footerstyle td{color:#000066;background:#fff ) repeat-x top;border:none;height:50px;}
|
||||
.pagerstyle{text-align:left;color:#006;background:#fff}
|
||||
tr.selecteditemstyle td{text-align:left;color:#fff;background:#b0b0b0;border:1px solid #d0d0d0;padding:5px 0px}
|
||||
|
||||
/* / css */
|
||||
/* tool tip */
|
||||
#dhtmltooltip{position:absolute;left:-300px;width:150px;border:1px solid #000;background:#f60 url(../images/surprise.gif) no-repeat 5% 50%;visibility:hidden;z-index:100;color:#fff;font:normal 11px arial;text-align:left;padding:5px 0 5px 30px}
|
||||
#dhtmlpointer{position:absolute;left:-300px;z-index:101}
|
||||
/* /tool tip */
|
||||
@@ -0,0 +1,88 @@
|
||||
var offsetfromcursorX=12 //Customize x offset of tooltip
|
||||
var offsetfromcursorY=10 //Customize y offset of tooltip
|
||||
|
||||
var offsetdivfrompointerX=10 //Customize x offset of tooltip DIV relative to pointer image
|
||||
var offsetdivfrompointerY=14 //Customize y offset of tooltip DIV relative to pointer image. Tip: Set it to (height_of_pointer_image-1).
|
||||
|
||||
document.write('<div id="dhtmltooltip"></div>') //write out tooltip DIV
|
||||
document.write('<img id="dhtmlpointer" src="../images/tooltiparrow.gif">') //write out pointer image
|
||||
|
||||
var ie=document.all
|
||||
var ns6=document.getElementById && !document.all
|
||||
var enabletip=false
|
||||
if (ie||ns6)
|
||||
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""
|
||||
|
||||
var pointerobj=document.all? document.all["dhtmlpointer"] : document.getElementById? document.getElementById("dhtmlpointer") : ""
|
||||
|
||||
function ietruebody(){
|
||||
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
|
||||
}
|
||||
|
||||
function ddrivetip(thetext, thewidth, thecolor){
|
||||
if (ns6||ie){
|
||||
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
|
||||
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
|
||||
tipobj.innerHTML=thetext
|
||||
enabletip=true
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
function positiontip(e){
|
||||
if (enabletip){
|
||||
var nondefaultpos=false
|
||||
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
|
||||
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
|
||||
//Find out how close the mouse is to the corner of the window
|
||||
var winwidth=ie&&!window.opera? ietruebody().clientWidth : window.innerWidth-20
|
||||
var winheight=ie&&!window.opera? ietruebody().clientHeight : window.innerHeight-20
|
||||
|
||||
var rightedge=ie&&!window.opera? winwidth-event.clientX-offsetfromcursorX : winwidth-e.clientX-offsetfromcursorX
|
||||
var bottomedge=ie&&!window.opera? winheight-event.clientY-offsetfromcursorY : winheight-e.clientY-offsetfromcursorY
|
||||
|
||||
var leftedge=(offsetfromcursorX<0)? offsetfromcursorX*(-1) : -1000
|
||||
|
||||
//if the horizontal distance isn't enough to accomodate the width of the context menu
|
||||
if (rightedge<tipobj.offsetWidth){
|
||||
//move the horizontal position of the menu to the left by it's width
|
||||
tipobj.style.left=curX-tipobj.offsetWidth+"px"
|
||||
nondefaultpos=true
|
||||
}
|
||||
else if (curX<leftedge)
|
||||
tipobj.style.left="5px"
|
||||
else{
|
||||
//position the horizontal position of the menu where the mouse is positioned
|
||||
tipobj.style.left=curX+offsetfromcursorX-offsetdivfrompointerX+"px"
|
||||
pointerobj.style.left=curX+offsetfromcursorX+"px"
|
||||
}
|
||||
|
||||
//same concept with the vertical position
|
||||
if (bottomedge<tipobj.offsetHeight){
|
||||
tipobj.style.top=curY-tipobj.offsetHeight-offsetfromcursorY+"px"
|
||||
nondefaultpos=true
|
||||
}
|
||||
else{
|
||||
tipobj.style.top=curY+offsetfromcursorY+offsetdivfrompointerY+"px"
|
||||
pointerobj.style.top=curY+offsetfromcursorY+"px"
|
||||
}
|
||||
tipobj.style.visibility="visible"
|
||||
if (!nondefaultpos)
|
||||
pointerobj.style.visibility="visible"
|
||||
else
|
||||
pointerobj.style.visibility="hidden"
|
||||
}
|
||||
}
|
||||
|
||||
function hideddrivetip(){
|
||||
if (ns6||ie){
|
||||
enabletip=false
|
||||
tipobj.style.visibility="hidden"
|
||||
pointerobj.style.visibility="hidden"
|
||||
tipobj.style.left="-1000px"
|
||||
tipobj.style.backgroundColor=''
|
||||
tipobj.style.width=''
|
||||
}
|
||||
}
|
||||
|
||||
document.onmousemove=positiontip
|
||||
|
After Width: | Height: | Size: 893 B |
|
After Width: | Height: | Size: 138 KiB |
|
After Width: | Height: | Size: 206 KiB |
|
After Width: | Height: | Size: 264 KiB |
|
After Width: | Height: | Size: 100 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 204 KiB |
|
After Width: | Height: | Size: 44 KiB |
|
After Width: | Height: | Size: 163 KiB |
|
After Width: | Height: | Size: 118 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 876 KiB |
|
After Width: | Height: | Size: 486 KiB |
|
After Width: | Height: | Size: 869 KiB |
|
After Width: | Height: | Size: 799 KiB |
|
After Width: | Height: | Size: 886 KiB |
|
After Width: | Height: | Size: 798 KiB |
|
After Width: | Height: | Size: 762 KiB |
|
After Width: | Height: | Size: 781 KiB |
|
After Width: | Height: | Size: 801 KiB |
|
After Width: | Height: | Size: 734 KiB |
|
After Width: | Height: | Size: 2.7 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
|
After Width: | Height: | Size: 713 KiB |
|
After Width: | Height: | Size: 270 KiB |
|
After Width: | Height: | Size: 427 KiB |
|
After Width: | Height: | Size: 827 KiB |
|
After Width: | Height: | Size: 3.0 MiB |
|
After Width: | Height: | Size: 598 KiB |
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 1.3 MiB |
494
0_inbox/Reclaiming Grounds/حوليات صاحب الأشجار/detail.asp.htm
Normal file
@@ -0,0 +1,494 @@
|
||||
<html><head>
|
||||
<meta http-equiv="Content-Language" content="fr">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
||||
<link rel="stylesheet" href="detail.asp_files/style.css" type="text/css">
|
||||
<script src="detail.asp_files/texte.js"></script>
|
||||
<script src="detail.asp_files/ctrltoolsZ.js"></script><title>• Menara - Technologie</title><!--DEBUT WEBOSCOPE Menara --><!-- NE MODIFIER QUE WEBO_ZONE ET WEBO_PAGE-->
|
||||
|
||||
<script language="javascript">
|
||||
WEBO_ZONE=5;
|
||||
WEBO_PAGE=1;
|
||||
webo_ok=0;
|
||||
</script><script language="javascript" src="detail.asp_files/weboscope.js"></script><script>
|
||||
if(webo_ok==1){webo_zpi(WEBO_ZONE,WEBO_PAGE,66563);}
|
||||
</script><!-- FIN WEBOSCOPE COPYRIGHT WEBORAMA--></head>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<body topmargin="0" leftmargin="0" onload="setVariables();checkLocation()" bgcolor="#f5f5f5">
|
||||
<table id="Table1" border="0" cellpadding="0" cellspacing="0" width="778">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#22447e" valign="top" width="778">
|
||||
|
||||
<table id="table6" border="0" cellpadding="0" cellspacing="0" width="778">
|
||||
<tbody><tr>
|
||||
<td colspan="2" bgcolor="#22447e" valign="top" width="200">
|
||||
<img src="detail.asp_files/topban.jpg" border="0" height="24" width="200"><br>
|
||||
<img src="detail.asp_files/logo.gif" border="0" height="78" width="200"></td>
|
||||
<td rowspan="2" background="detail.asp_files/bantile.gif" bgcolor="#22447e" valign="top" width="578">
|
||||
<table id="table7" border="0" cellpadding="0" cellspacing="0" width="578">
|
||||
<tbody><tr>
|
||||
<td colspan="2" height="8" width="100%"><img src="detail.asp_files/1px_002.gif" border="0" height="8" width="1"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="60" width="15%"></td>
|
||||
<td height="60" width="85%">
|
||||
|
||||
<!--Start Pub-->
|
||||
<script language="Javascript" src="detail.asp_files/banAd468.htm"></script>
|
||||
<script language="Javascript">this.document.write(getadvertisement());</script><!--Inserted HTML code from MSASv1.0--><a href="http://pub.casanet.ma/adredir.asp?ciid=641&url=http://www.leguidemaroc.com/menara.php" target="_blank"><img src="detail.asp_files/leguidemaroc.gif" alt="Le Guide Maroc" border="0" height="60" width="468"></a>
|
||||
<!--END Pub-->
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" height="11" width="100%"><img src="detail.asp_files/1px_002.gif" border="0" height="10" width="1"></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table id="table8" border="0" cellpadding="0" cellspacing="0" height="18" width="578">
|
||||
<tbody><tr>
|
||||
<td background="detail.asp_files/bgz.gif" width="100%"><a href="http://www.menara.ma/index.htm"><img id="m0" name="m0" src="detail.asp_files/b_accueil-on.gif" border="0" height="18" width="25"></a><a href="http://www.menara.ma/infos/index.htm"><img src="detail.asp_files/b_infos-on.gif" border="0" height="18" width="51"></a><a href="http://www.menara.ma/abonne/i-offres.asp"><img src="detail.asp_files/b_offres-off.gif" border="0" height="18" width="77"></a><a href="http://www.menara.ma/abonne/compte.asp"><img src="detail.asp_files/b_compte-off.gif" border="0" height="18" width="86"></a><a href="http://www.menara.ma/annonces/ann_index.aspx"><img src="detail.asp_files/b_annonce-off.gif" border="0" height="18" width="81"></a><a href="http://www.menara.ma/pratique/pratique.asp"><img src="detail.asp_files/b_pratique-off.gif" border="0" height="18" width="73"></a><a href="http://www.menara.ma/communiquer.asp"><img src="detail.asp_files/b_communiquer-off.gif" border="0" height="18" width="105"></a><a href="http://www.menara.ma/annuaires/index.asp"><img src="detail.asp_files/b_annuaires-off.gif" border="0" height="18" width="80"></a></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table id="table9" border="0" cellpadding="0" cellspacing="0" width="578">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#4464a0" width="100%"><img src="detail.asp_files/1px_002.gif" border="0" height="3" width="3"></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table id="table10" border="0" cellpadding="0" cellspacing="0" height="32" width="578">
|
||||
<tbody><tr>
|
||||
<td background="detail.asp_files/bgm.gif" valign="top" width="578"><img src="detail.asp_files/1px_002.gif" border="0" height="2" width="2"><br>
|
||||
<table id="Table6" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td align="right" nowrap="nowrap" width="90%">
|
||||
<a href="http://www.menara.ma/infos/maroc/index.htm"><font color="#ffffff">Maroc </font></a><font color="#7da2d7">| </font><a href="http://www.menara.ma/infos/maghreb/index.htm"><font color="#ffffff">Maghreb </font></a><font color="#7da2d7">| </font><a href="http://www.menara.ma/infos/USA/index.htm"><font color="#ffffff">Monde </font></a><font color="#7da2d7">| </font><a href="http://www.menara.ma/infos/sport/index.htm"><font color="#ffffff">Sport </font></a><font color="#7da2d7">| </font><b><font color="#dbdf20">Technologie </font></b><font color="#7da2d7">| </font><a href="http://www.menara.ma/infos/femmes/index.htm"><font color="#ffffff">Femmes </font></a><font color="#7da2d7">| </font><a href="http://www.menara.ma/infos/economie/index.htm"><font color="#ffffff">Economie </font></a><font color="#7da2d7">| </font><a href="http://www.menara.ma/infos/divertissement/index.htm"><font color="#ffffff">Divertissement </font></a><font color="#7da2d7">| </font><a href="http://www.menara.ma/enfants/index.aspx"><font color="#ffffff">Junior</font></a>
|
||||
</td>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#4464a0" valign="top" width="152">
|
||||
<img src="detail.asp_files/downlogo.gif" border="0" height="32" width="152"></td>
|
||||
<td background="detail.asp_files/bgm.gif" valign="top" width="48">
|
||||
<img src="detail.asp_files/corner.gif" border="0" height="32" width="11"></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table id="Table2" border="0" cellpadding="0" cellspacing="0" width="778">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#4464a0" valign="top" width="152">
|
||||
<table id="Table4" bgcolor="#4464a0" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="100%">
|
||||
|
||||
<div align="center">
|
||||
<center>
|
||||
<table id="table2" bgcolor="#85a2cc" border="0" cellpadding="0" cellspacing="0" width="146">
|
||||
<tbody><tr>
|
||||
<td width="116"><b><a href="http://www.menara.ma/Infos/abonne/i-offres.asp"><font color="#22447e" size="1"> Nos offres</font></a></b></td>
|
||||
<td width="32">
|
||||
<p align="right">
|
||||
<img src="detail.asp_files/colmenus.gif" align="middle" border="0" height="21" width="31"></p></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table id="table3" bgcolor="#85a2cc" border="0" cellpadding="0" cellspacing="0" width="146">
|
||||
<tbody><tr>
|
||||
<td width="148">
|
||||
<table id="table4" bgcolor="#85a2cc" border="0" cellpadding="0" cellspacing="0" width="146">
|
||||
<tbody><tr>
|
||||
<td width="148">
|
||||
<div align="center">
|
||||
<table id="table5" style="border-collapse: collapse;" border="0" bordercolor="#111111" cellpadding="0" cellspacing="1" width="96%">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#f5f5f5" height="18" width="100%">
|
||||
<table style="border-collapse: collapse;" id="table6" border="0" bordercolor="#111111" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td><font color="#4464a0" size="1"><font size="1"> </font><a href="http://www.menara.ma/abonne/adsl.asp"><font color="#4464a0" size="1">Menara
|
||||
ADSL</font></a></font></td>
|
||||
<td width="50">
|
||||
<p align="center"><font color="#4464a0" size="1">
|
||||
<a href="http://www.menara.ma/abonne/wifi.asp">
|
||||
<img src="detail.asp_files/pass.gif" border="0" height="14" width="37"></a></font></p></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="18" width="100%"><font color="#4464a0" size="1"> <a href="http://www.menara.ma/abonne/toucompri.asp"><font color="#4464a0" size="1">Menara
|
||||
Toucompri</font></a></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="18" width="100%">
|
||||
<font color="#4464a0" size="1"><font size="1"> </font><a href="http://www.menara.ma/abonne/libreacces.asp"><font color="#4464a0" size="1">Menara
|
||||
Libre @ccès</font></a></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="18" width="100%"><font color="#4464a0" size="1"> <a href="http://www.menara.ma/abonne/hebergement.asp"><font color="#4464a0" size="1">Menara
|
||||
Hébergement</font></a></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="18" width="100%">
|
||||
<a href="http://www.menara.ma/abonne/shd.asp"><font color="#4464a0" size="1"> Solutions Haut Débit</font></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="18" width="100%">
|
||||
<a href="http://www.menara.ma/abonne/securite.asp"><font color="#4464a0" size="1"> Pack Sécurité</font></a> <a href="http://www.menara.ma/abonne/securite.asp"><img src="detail.asp_files/new.gif" border="0"></a></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="148">
|
||||
<img src="detail.asp_files/1px" border="0" height="1" width="1"></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="100%"></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table bgcolor="#85a2cc" border="0" cellpadding="0" cellspacing="0" width="146">
|
||||
<tbody><tr>
|
||||
<td width="116"><b><font color="#22447e" size="1"> Menara Passport</font></b></td>
|
||||
<td width="32">
|
||||
<p align="right">
|
||||
<img src="detail.asp_files/colmenus.gif" align="middle" border="0" height="21" width="31"></p></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table bgcolor="#85a2cc" border="0" cellpadding="0" cellspacing="0" width="146">
|
||||
<tbody><tr>
|
||||
<td width="148">
|
||||
<div align="center">
|
||||
<table id="RR2" style="" border="0" cellspacing="1" width="96%">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#f5f5f5" height="16" width="100%"><font color="#4464a0" size="1"> </font><a href="http://www.menara.ma/SMS/index.asp"><font color="#4464a0" size="1">Mon
|
||||
SMS</font></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="16" width="100%"><font color="#4464a0" size="1"> </font><a href="http://www.menara.ma/emploi/cv1.asp"><font color="#4464a0" size="1">Mon
|
||||
C.V.</font></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="16" width="100%"><font color="#4464a0" size="1"> </font><a href="http://www.menara.ma/annonces/mesannonces.asp"><font color="#4464a0" size="1">Mes
|
||||
Annonces</font></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="16" width="100%"><font color="#4464a0" size="1"> </font><a href="http://www.menara.ma/auth/profilModif.asp"><font color="#4464a0" size="1">Mon
|
||||
Profil</font></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" height="16" width="100%"> <a href="http://www.menara.ma/auth/sendpass.asp"><font color="#4464a0" size="1">Mot de passe oublié</font></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</center>
|
||||
</div>
|
||||
<br>
|
||||
<!----Begin Ram Compaign----->
|
||||
|
||||
<!------The End--------------->
|
||||
<table id="Table5" border="0" cellpadding="0" cellspacing="9" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="100%">
|
||||
|
||||
<script language="JavaScript" src="detail.asp_files/a.js"></script><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="menara_s700_sky" align="" height="600" width="120"> <param name="movie" value="http://www.netad-vantage.net/q4/menara_s700_sky.swf?clickTAG=http://ads.net-ad-vantage.com/RC/20050170/15586/www.sonyericsson.com/spg.jsp?cc=ae%26lc=en%26ver=4000%26template=pp1_loader%26php=php1_10140%26zone=pp%26lm=pp1%26pid=10140"> <param name="quality" value="high"> <param name="bgcolor" value="#FFFFFF"> <embed src="detail.asp_files/menara_s700_sky.swf" quality="high" bgcolor="#FFFFFF" name="menara_s700_sky" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" align="" height="600" width="120"> </object>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<div id="logo" style="position: absolute; left: 600px; top: 300px; z-index: 2;">
|
||||
<table id="Table3" border="0" cellpadding="2" cellspacing="1" width="146">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#f5f5f5" width="20"><a style="" onclick="FontLarger();"><img src="detail.asp_files/a.gif" align="middle" border="0" height="20" width="20"></a>
|
||||
</td>
|
||||
<td bgcolor="#e4eaf3" width="126"><a style="" onclick="FontLarger();"><font color="#000000">Agrandir
|
||||
la police</font></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" width="20"><a style="" onclick="FontSmaler();"><img src="detail.asp_files/a-.gif" align="middle" border="0" height="20" width="20"></a>
|
||||
</td>
|
||||
<td bgcolor="#e4eaf3" width="126"><a style="" onclick="FontSmaler();"><font color="#000000">Diminuer</font></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" width="20"><a href="javascript: window.open('send.asp?article_id=10022&lmodule=Technologie','none','width=520,height=400,top=100,left=100,scrollbars=no'); void(0);" onmouseover="self.status='';return true;"><img src="detail.asp_files/addart.gif" align="middle" border="0" height="20" width="20"></a></td>
|
||||
<td bgcolor="#e4eaf3" width="126"><a href="javascript: window.open('send.asp?article_id=10022&lmodule=Technologie','none','width=520,height=400,top=100,left=100,scrollbars=no'); void(0);" onmouseover="self.status='';return true;"><font color="#000000">Envoyer à un ami</font></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#f5f5f5" width="20"><a href="http://www.menara.ma/Infos/includes/print.asp?article_id=10022&categorie=&lmodule=Technologie" target="blank"><img src="detail.asp_files/print.gif" align="middle" border="0" height="20" width="20"></a></td>
|
||||
<td bgcolor="#e4eaf3" width="126"><a href="http://www.menara.ma/Infos/includes/print.asp?article_id=10022&categorie=&lmodule=Technologie" target="blank"><font color="#000000">Imprimer</font></a></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</div>
|
||||
<!-- Script Size: 3.24 KB -->
|
||||
|
||||
</td>
|
||||
<td bgcolor="#ffffff" valign="top" width="626">
|
||||
<table id="Table6" border="0" cellpadding="0" cellspacing="6" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="100%">
|
||||
|
||||
<table id="Table2" border="0" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td valign="top">
|
||||
<br><div align="center">
|
||||
|
||||
<div align="center">
|
||||
<center>
|
||||
<table background="detail.asp_files/bg_s_t.gif" border="0" cellpadding="0" cellspacing="0" width="460">
|
||||
<tbody><tr>
|
||||
<form method="post" name="O_Selection" action="/infos/includes/narchive.asp?lmodule=technologie" id="Form1"></form>
|
||||
<td rowspan="3" valign="top" width="51"><img src="detail.asp_files/s_t.gif" border="0"></td>
|
||||
<td valign="top" width="399"><img src="detail.asp_files/1px.gif" border="0" height="10" width="10"></td>
|
||||
<td valign="top" width="10"><img src="detail.asp_files/crttech.gif" border="0" height="10" width="10"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" width="399">
|
||||
<p align="center"><img src="detail.asp_files/1px.gif" border="0" height="5" width="5"><br>
|
||||
|
||||
<select size="1" name="Categorie" class="Zonetxt" id="Select1"><option value="">TOUTE L'ARCHIVE</option><option value="INTERNET">INTERNET</option><option value="PRATIQUE">PRATIQUE</option><option value="TELECOM">TELECOM</option><option value="SECURITE">SECURITE</option><option value="ENTRETIENS">ENTRETIENS</option><option value="NEWS">NEWS</option><option value="AGENDA">AGENDA</option><option value="OPEN SOURCE">OPEN SOURCE</option><option value="MAGHREB">MAGHREB</option><option value="COMMUNIQUES">COMMUNIQUES</option></select> <input class="ZoneTXT" maxlength="40" name="query" size="16" id="Text1">
|
||||
<input class="ZoneBUT" value="Rechercher" name="submit1" id="Submit1" type="submit">
|
||||
<br>
|
||||
<img src="detail.asp_files/1px.gif" border="0" height="5" width="5"></p>
|
||||
</td>
|
||||
<td bgcolor="#cedef7" valign="top" width="10"><img src="detail.asp_files/1px.gif" border="0" height="10" width="10"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" width="399"><img src="detail.asp_files/1px.gif" border="0" height="10" width="10"></td>
|
||||
<td valign="top" width="10"><img src="detail.asp_files/crdtech.gif" border="0" height="10" width="10"></td>
|
||||
</tr>
|
||||
|
||||
</tbody></table>
|
||||
</center>
|
||||
</div>
|
||||
<table border="0" cellpadding="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="100%"><img src="detail.asp_files/1px.gif" border="0" height="8" width="8"></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
<br>
|
||||
<form action="/infos/includes/rate/vote.asp" method="post" target="RateSystem" onsubmit="window.open('','RateSystem','menubar=0,toolbar=0,resizable=0,scrollbars=0,width=230,height=140,left=300,top=200')">
|
||||
|
||||
Avez-vous apprécié cet article ?
|
||||
<input value="Notez" style="font-family: verdana;" type="submit">
|
||||
<select size="1" name="rating" style="font-family: verdana;"><option name="rating" value="5">Excellent</option><option name="rating" value="4">Très bien</option><option name="rating" value="3">Bien</option><option name="rating" value="2">Moyen</option><option name="rating" value="1">Médiocre</option></select>
|
||||
<input name="lmodule" value="Technologie" type="hidden">
|
||||
<input name="item" value="10022" type="hidden">
|
||||
<img src="detail.asp_files/RateOn.gif">
|
||||
<img src="detail.asp_files/RateOn.gif">
|
||||
<img src="detail.asp_files/RateOn.gif">
|
||||
<img src="detail.asp_files/RateOn.gif"> <img src="detail.asp_files/RateOff.gif">
|
||||
</form>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
<table id="Table3" border="0" cellpadding="8" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="626">
|
||||
<span class="titre">Blog en arabe : mode d’emploi</span><br>
|
||||
(25/1/2005)
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="article" width="626">
|
||||
<p align="justify"><b>
|
||||
|
||||
<img src="detail.asp_files/NS_Blog4_G.jpg" valign="bottom" align="left" hspace="10" vspace="5">
|
||||
|
||||
<font color="#000000">Grâce
|
||||
au développement technologique, les internautes qui ne maîtrisent que
|
||||
la langue arabe peuvent aussi disposer de leurs propres blogs sur
|
||||
internet. Guide pratique de Menara pour rejoindre la blogosphère arabe.</font></b>
|
||||
<br><br><br>
|
||||
</p>
|
||||
<p align="justify"><br><br>
|
||||
</p><p>Le
|
||||
boom des carnets web connu communément sous le nom « Weblog » élargit
|
||||
son périmètre linguistique. De plus en plus d’internautes arabes ont
|
||||
commencé à publier leurs blogs (Moudawana) sur le net profitant des
|
||||
facilités de publication et de mise à jour de ces nouveaux outils.<br><br>Ce
|
||||
foisonnement des blogs résulte en partie de la tendance des différentes
|
||||
plates-formes de blogging à disposer d’une offre globale qui intègre le
|
||||
plus grand nombre d’options linguistiques, en premier lieu la langue
|
||||
arabe. <table align="right" border="0" cellpadding="0" cellspacing="4" width="206">
|
||||
<tbody><tr>
|
||||
<td height="16" width="6"></td>
|
||||
<td width="200">
|
||||
<table style="" border="0" cellspacing="0" width="100%">
|
||||
<tbody><tr>
|
||||
<td width="100%">
|
||||
<table align="right" border="0" cellpadding="4" cellspacing="1" width="200">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#336699" width="100%"><b><font color="#ffffff"><img src="detail.asp_files/rm.gif" align="middle" border="0"> Lire aussi :</font></b></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td bgcolor="#e7ebf7" width="100%">
|
||||
<a class="articles" href="http://www.menara.ma/Infos/includes/detail.asp?article_id=4744&lmodule=Maroc">
|
||||
Le Souverain procède au lancement de plusieurs projets ...
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td bgcolor="#e7ebf7" width="100%">
|
||||
<a class="articles" href="http://www.menara.ma/Infos/includes/detail.asp?article_id=6841&lmodule=USA">
|
||||
Eclairage: l'Irak à quelques jours des élections
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td bgcolor="#e7ebf7" width="100%">
|
||||
<a class="articles" href="http://www.menara.ma/Infos/includes/detail.asp?article_id=6744&lmodule=Sport">
|
||||
Maroc-Kenya : les Lions de l'Atlas prêts à rugir
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td bgcolor="#e7ebf7" width="100%">
|
||||
<a class="articles" href="http://www.menara.ma/Infos/includes/detail.asp?article_id=10022&lmodule=Technologie">
|
||||
Blog en arabe : mode d'emploi
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td bgcolor="#e7ebf7" width="100%">
|
||||
<a class="articles" href="http://www.menara.ma/Infos/includes/detail.asp?article_id=1412&lmodule=Femmes">
|
||||
Contre la vente d'un portable pour enfants
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td bgcolor="#e7ebf7" width="100%">
|
||||
<a class="articles" href="http://www.menara.ma/Infos/includes/detail.asp?article_id=8834&lmodule=Economie">
|
||||
Le financement, bête noire des industriels du cui...
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody></table>
|
||||
<p> </p></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
<br><br>C’est le cas de la solution « Blogger » du moteur de recherche
|
||||
Google. Dorénavant, depuis 2004, il est devenu possible de publier en
|
||||
langue arabe votre page web tout en bénéficiant des différentes
|
||||
fonctionnalités de publication en ligne de cette solution. D’autres
|
||||
plates-formes du logiciel libre tel que Wordpress ou Dotclear dispose
|
||||
d’un module multilangue qui permet le support de la langue arabe.<br><br>Il
|
||||
faut reconnaître que le phénomène a pris une grande ampleur dans les
|
||||
pays du Moyen-Orient (Emirats Arabes Unis, Bahrayn, Kuwait, Irak,
|
||||
Syrie…) et en Egypte. D’ailleurs, le dynamisme de cette nouvelle
|
||||
communauté est manifeste à travers le lancement récemment d’un concours
|
||||
« Arablogger » dédié au choix des meilleurs weblogs arabes.<br><br>Au
|
||||
niveau maghrébin, les blogs se développement principalement avec du
|
||||
contenu en langue française. Les tunisiens et les marocains manifestent
|
||||
un intérêt particulier pour cette nouvelle forme d’expression directe
|
||||
sur la toile. <br><br>Au Maroc, le blogging en langue arabe est encore
|
||||
embryonnaire, seul une dizaine d’internautes ont franchi le pas.
|
||||
Néanmoins, avec la vulgarisation des solutions gratuites multilangues,
|
||||
certainement une nouvelle communauté prendra forme à côté de celle qui
|
||||
a déjà opté pour le blogging en français.<br><br><strong>Sélection Menara de blogs en langue arabe :</strong><br><br><a target="_blank" href="http://www.arablogger.com/"><font color="mediumblue"><strong>Le concours des meilleurs blogs arabes </strong></font></a><br><a target="_blank" href="http://osama.ae/index.php"><strong><font color="mediumblue">http://osama.ae/index.php</font></strong></a><br><a target="_blank" href="http://www.serdal.com/"><font color="mediumblue"><strong>http://www.serdal.com/</strong></font></a><br><a target="_blank" href="http://omaralarabi.blogspot.com/"><strong><font color="mediumblue">http://omaralarabi.blogspot.com/</font></strong></a><br><a target="_blank" href="http://www.ihath.com/arabi"><strong><font color="mediumblue">http://www.ihath.com/arabi</font></strong></a><br><a target="_blank" href="http://justice4every1.blogspot.com/"><strong><font color="mediumblue">http://justice4every1.blogspot.com/</font></strong></a><br><a target="_blank" href="http://africano.blogspot.com/"><strong><font color="mediumblue">http://africano.blogspot.com/</font></strong></a><br><a target="_blank" href="http://r-and-m.blogspot.com/"><strong><font color="mediumblue">http://r-and-m.blogspot.com/</font></strong></a><br><a target="_blank" href="http://gharbeia.blogspot.com/"><strong><font color="mediumblue">http://gharbeia.blogspot.com/</font></strong></a><br><a target="_blank" href="http://zayedalsaidi.blogspot.com/"><strong><font color="mediumblue">http://zayedalsaidi.blogspot.com/</font></strong></a></p>
|
||||
<br><p><strong>Blog marocain en arabe</strong><br><a target="_blank" href="http://jomfery.blogspot.com/"><strong><font color="mediumblue">http://jomfery.blogspot.com/</font></strong></a></p>
|
||||
<br><p><strong>Plates-formes de blog qui supportent l’arabe</strong><br><a target="_blank" href="http://www.blogger.com/"><strong><font color="mediumblue">http://www.blogger.com/</font></strong></a><br><strong><a target="_blank" href="http://www.swalif.net/softs/showthread.php?s=&threadid=99025"><font color="mediumblue">Wordpress en langue arabe</font></a></strong></p>
|
||||
<p></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="626">
|
||||
<b><a href="mailto:jankari@casanet.ma">
|
||||
Rachid Jankari</a></b>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
<p align="center"></p><form action="/infos/includes/rate/vote.asp" method="post" target="RateSystem" onsubmit="window.open('','RateSystem','menubar=0,toolbar=0,resizable=0,scrollbars=0,width=230,height=140,left=300,top=200')">
|
||||
|
||||
Avez-vous apprécié cet article ?
|
||||
<input value="Notez" style="font-family: verdana;" type="submit">
|
||||
<select size="1" name="rating" style="font-family: verdana;"><option name="rating" value="5">Excellent</option><option name="rating" value="4">Très bien</option><option name="rating" value="3">Bien</option><option name="rating" value="2">Moyen</option><option name="rating" value="1">Médiocre</option></select>
|
||||
<input name="lmodule" value="Technologie" type="hidden">
|
||||
<input name="item" value="10022" type="hidden">
|
||||
<img src="detail.asp_files/RateOn.gif">
|
||||
<img src="detail.asp_files/RateOn.gif">
|
||||
<img src="detail.asp_files/RateOn.gif">
|
||||
<img src="detail.asp_files/RateOn.gif"> <img src="detail.asp_files/RateOff.gif">
|
||||
</form><p></p>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
<table id="Table7" border="0" cellpadding="0" cellspacing="0" width="778">
|
||||
<tbody><tr>
|
||||
<td bgcolor="#22447e" valign="top" width="778">
|
||||
<table border="0" cellpadding="4" cellspacing="0" width="778">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="3" bgcolor="#4464a0" width="100%"><a href="http://users.casanet.net.ma/partenaires/mc-times/"><font color="#ffffff"><u>Annoncer sur Menara</u></font></a><font color="#7da2d7"> |
|
||||
</font><a href="http://www.menara.ma/web/wwwNewForm.asp?FormMode=New"><font color="#ffffff"><u>Proposez votre site</u></font></a><font color="#7da2d7"> |
|
||||
</font>
|
||||
<a href="javascript:window.external.AddFavorite('http://www.menara.ma/','Menara, Portail Marocain')"><font color="#ffffff"><u>Ajouter Menara à vos sites préférés</u></font></a></td></tr>
|
||||
<tr>
|
||||
<td bgcolor="#22447e" width="70%"><font color="#ffffff" face="Verdana" size="1">
|
||||
</font><p align="left"><font color="#ffffff" face="Verdana" size="1"><br>E-mail: </font><a href="mailto:menara@casanet.ma"><font color="#ffffff" face="Verdana" size="1"><u>menara@casanet.ma</u></font></a><font color="#ffffff" face="Verdana" size="1"> - Tél.: +212 22 95 95 00
|
||||
- Fax: +212 22 95 95 01 </font><font color="#5a7db4" face="Verdana" size="1"><br></font><font color="#7da2d7"><font face="Verdana" size="1">Copyright
|
||||
</font><font color="#7fa1d5" face="Verdana" size="1">© Menara 2002-2004</font></font><font color="#7da2d7" face="Verdana" size="1">. Tous droits
|
||||
réservés.</font></p></td>
|
||||
<td bgcolor="#22447e" width="16%">
|
||||
<a href="http://www.weborama.fr/" target="_blank">
|
||||
<img src="detail.asp_files/Weborama.gif" align="right" border="0" height="18" width="88"></a></td>
|
||||
<td bgcolor="#22447e" width="12%"><img src="detail.asp_files/powered.jpg" align="right" border="0" height="38" width="85"></td></tr></tbody></table>
|
||||
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
</body></html>
|
||||
@@ -0,0 +1,338 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>• Menara : Le Portail du Maroc </title>
|
||||
<meta http-equiv="Content-Language" content="fr">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<link rel="stylesheet" href="/files/home.css" type="text/css">
|
||||
</head>
|
||||
<body topmargin="0" leftmargin="0" bgcolor="#f5f5f5">
|
||||
<table border="0" width="778" cellspacing="0" cellpadding="0" ID="table6">
|
||||
<tr>
|
||||
<td width="200" bgcolor="#22447E" valign="top" colspan="2">
|
||||
<img border="0" src="/NewIncludes/tabs/topban.jpg" width="200" height="24"><br>
|
||||
<img border="0" src="/NewIncludes/tabs/logo.gif" width="200" height="78"></td>
|
||||
<td width="578" background="/NewIncludes/tabs/bantile.gif" valign="top" bgcolor="#22447E" rowspan="2">
|
||||
<table border="0" width="578" cellspacing="0" cellpadding="0" ID="table7">
|
||||
<tr>
|
||||
<td width="100%" colspan="2" height="8"><img border="0" src="/NewIncludes/tabs/1px.gif" width="1" height="8"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15%" height="60"></td>
|
||||
<td width="85%" height="60">
|
||||
<!--Start Pub-->
|
||||
<script language="javascript">
|
||||
var g_prexp_dis;
|
||||
var g_prexp_evt = false;
|
||||
var g_prexp_url = "http://www.menara.ma/abonne/libreacces.asp";
|
||||
var g_prexp_img = "/images/ban-free-g.gif";
|
||||
var g_prexp_bnr = "/images/ban-p.gif";
|
||||
var g_prexp_trk = "track";
|
||||
var g_move_pixl = 10;
|
||||
var g_move_time = 30;
|
||||
var g_prexp_tim = 50;
|
||||
var g_prexp_man = 60;
|
||||
var g_prexp_het = 438;
|
||||
var g_prexp_clp = g_prexp_het;
|
||||
var g_prexp_pnl = g_prexp_man - g_prexp_het;
|
||||
|
||||
if (navigator.appVersion.indexOf("Win")>=0 && parseFloat(navigator.appVersion.substr(navigator.appVersion.indexOf("MSIE ")+5))>=5) {
|
||||
document.attachEvent("onreadystatechange", rttAdPrxBanBegin);
|
||||
document.write('<div style="position: relative; width: 468; height: 60; z-index: 30;"><span id= "span_prexp"onmouseover="g_prexp_dis= true;"onmouseout="g_prexp_dis=false;" style="background: #ffffff;"><A href="'+ g_prexp_url +'" target="_blank"><img src="' + g_prexp_bnr + '" width="468" height="60" hspace="0" vspace="0" border="0" alt="" style="position: relative;"><br><img id="ngap_prexp" src="'+ g_prexp_img +'" width="468" height="' + g_prexp_het + '" border="0" alt="" style="position: absolute; top: ' + g_prexp_pnl + '; clip: rect('+ g_prexp_clp + ' auto auto auto);"></A></span></div>');
|
||||
}
|
||||
else {
|
||||
document.write('<A href="'+ g_prexp_url +'" target="_blank"><img src="' + g_prexp_bnr + '" width="468" height="60" hspace="0" vspace="0" border="0" alt=""></A>');}
|
||||
|
||||
|
||||
function rttAdPrxBanBegin() {
|
||||
if (document.readyState == "complete") {
|
||||
var x=3
|
||||
if (x>1) {
|
||||
//rttSetFlyoutCookie();
|
||||
g_prexp_dis = true;
|
||||
rttAdPrxBanAttach();
|
||||
}
|
||||
else {
|
||||
rttAdPrxBanAttach();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function rttAdPrxBanShow() {
|
||||
if (g_prexp_clp >= g_prexp_het) {
|
||||
adtechhideElement("SELECT");adtechhideElement("OBJECT");
|
||||
}
|
||||
if (g_prexp_clp > g_move_pixl && g_prexp_dis) {g_prexp_clp = g_prexp_clp - g_move_pixl;
|
||||
g_prexp_pnl = g_prexp_pnl + g_move_pixl;
|
||||
ngap_prexp.style.clip = "rect(" + g_prexp_clp + " auto auto auto)";
|
||||
ngap_prexp.style.top = g_prexp_pnl;window.setTimeout("rttAdPrxBanShow()", g_move_time);
|
||||
}
|
||||
if (g_prexp_pnl <= g_prexp_het && !g_prexp_evt) {
|
||||
window.setTimeout("g_prexp_dis=false; rttAdPrxBanHide()", g_prexp_tim);
|
||||
}
|
||||
}
|
||||
|
||||
function rttAdPrxBanHide() {
|
||||
if (g_prexp_pnl > (g_prexp_man - g_prexp_het) && !g_prexp_dis) {g_prexp_clp = g_prexp_clp + g_move_pixl;g_prexp_pnl = g_prexp_pnl - g_move_pixl;ngap_prexp.style.clip = "rect (" + (g_prexp_clp + 60) + " auto auto auto)";ngap_prexp.style.top = -1 * g_prexp_clp;window.setTimeout("rttAdPrxBanHide()", g_move_time);} else {rttAdPrxBanAttach();adtechshowElement("SELECT");adtechshowElement("OBJECT");}}
|
||||
|
||||
function rttAdPrxBanAttach() {
|
||||
if (!g_prexp_evt) {g_prexp_evt = true;span_prexp.attachEvent("onmouseover",rttAdPrxBanShow);span_prexp.attachEvent("onmouseout",rttAdPrxBanHide);span_prexp.attachEvent("onmouseover",rttAdPrxTrk);}}
|
||||
|
||||
function rttSetFlyoutCookie() {
|
||||
//if (location.href.indexOf("msn.com/")!=-1) {document.cookie = "rttFlyout=true;domain=msn.com;"}
|
||||
}
|
||||
|
||||
function rttAdPrxTrk() {
|
||||
//document.rtt_prexp_trk.src = g_prexp_trk;
|
||||
}
|
||||
|
||||
function adtechhideElement(elmID) {
|
||||
for (i = 0; i < document.layers; i++){obj = document.all.tags(elmID)[i]; if (! obj || ! obj.offsetParent) continue; obj.style.visibility = "hidden";}}
|
||||
|
||||
|
||||
function adtechshowElement(elmID) {
|
||||
for (i = 0; i < document.layers; i++){obj = document.all.tags(elmID)[i]; if (! obj || ! obj.offsetParent) continue; obj.style.visibility = "";}}
|
||||
|
||||
function ads(){
|
||||
rttAdPrxBanShow();
|
||||
window.setTimeout("g_prexp_dis=false; rttAdPrxBanHide()", g_prexp_tim);
|
||||
}
|
||||
</script>
|
||||
<!--END Pub-->
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" colspan="2" height="11"><img border="0" src="/NewIncludes/tabs/1px.gif" width="1" height="13"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="578" cellspacing="0" cellpadding="0" height="18" ID="table8">
|
||||
<tr>
|
||||
<td width="100%" background="/NewIncludes/tabs/bgz.gif"><a href="/index.htm"><img id="m0" name="m0" border="0" src="/NewIncludes/btn/b_accueil-on.gif" width="25" height="18"></a><a href="/infos/index.htm"><img border="0" src="/NewIncludes/btn/b_infos-off.gif" width="51" height="18"></a><a href="/abonne/i-offres.asp"><img border="0" src="/NewIncludes/btn/b_offres-off.gif" width="77" height="18"></a><a href="/abonne/compte.asp"><img border="0" src="/NewIncludes/btn/b_compte-off.gif" width="86" height="18"></a><a href="/annonces/ann_index.aspx"><img border="0" src="/NewIncludes/btn/b_annonce-off.gif" width="81" height="18"></a><a href="/pratique/pratique.asp"><img border="0" src="/NewIncludes/btn/b_pratique-off.gif" width="73" height="18"></a><a href="/communiquer.asp"><img border="0" src="/NewIncludes/btn/b_communiquer-off.gif" width="105" height="18"></a><a href="/annuaires/index.asp"><img border="0" src="/NewIncludes/btn/b_annuaires-off.gif" width="80" height="18"></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="578" cellspacing="0" cellpadding="0" ID="table9">
|
||||
<tr>
|
||||
<td width="100%" bgcolor="#4464A0"><img border="0" src="/NewIncludes/tabs/1px.gif" width="3" height="3"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="578" cellspacing="0" cellpadding="0" height="32" ID="table10">
|
||||
<tr>
|
||||
<td width="578" background="/NewIncludes/tabs/bgm.gif" valign="top"><img border="0" src="/NewIncludes/tabs/1px.gif" width="2" height="2"><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="152" bgcolor="#4464A0" valign="top">
|
||||
<img border="0" src="/NewIncludes/tabs/downlogo.gif" width="152" height="32"></td>
|
||||
<td width="48" valign="top" background="/NewIncludes/tabs/bgm.gif">
|
||||
<img border="0" src="/NewIncludes/tabs/corner.gif" width="11" height="32"></td>
|
||||
</tr>
|
||||
</table> <table border="0" width="778" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="152" bgcolor="#4464a0" valign="top">
|
||||
<table border="0" width="100%" bgcolor="#4464a0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<p>
|
||||
<p>
|
||||
<p>
|
||||
<p>
|
||||
<p>
|
||||
<p>
|
||||
<p>
|
||||
<p>
|
||||
<p></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td width="626" valign="top" bgcolor="#ffffff">
|
||||
<div align="center">
|
||||
<center>
|
||||
<table border="0" width="600" cellpadding="4">
|
||||
<tr>
|
||||
<td width="125%" colspan="5">
|
||||
<table width="600" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr align="left" valign="top">
|
||||
<td width="12" valign="bottom" height="4"><img src="/coins/bm_01.gif"></td>
|
||||
<td width="576"><img src="/coins/bm_top.gif" width="576" height="4"></td>
|
||||
<td width="12" valign="bottom" height="4"><img src="/coins/bm_03.gif" width="12" height="4"></td>
|
||||
</tr>
|
||||
<tr align="left" valign="top">
|
||||
<td width="12"><img src="/coins/bm1_02.gif" width="12" height="20"></td>
|
||||
<td width="576" background="/coins/spacer_b.gif">
|
||||
<p><img border="0" src="/imgs/1px.gif" width="3" height="3"><font color="#22447e"><br>
|
||||
</font><b><font color="#4464a0">Erreur HTTP - 404 : La page est introuvable !</font></b></p>
|
||||
</td>
|
||||
<td width="12"><img src="/coins/bm1_04.gif" width="12" height="20"></td>
|
||||
</tr>
|
||||
<tr align="left" valign="top" height="5">
|
||||
<td width="12" background="/coins/bm_left.gif"> </td>
|
||||
<td width="576" class="textl"></td>
|
||||
<td width="12" background="/coins/bm_right.gif"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="12" background="/coins/bm_left.gif"> </td>
|
||||
<td width="576">
|
||||
<div align="center">
|
||||
<table border="0" width="100%" cellspacing="1" cellpadding="2">
|
||||
<tr>
|
||||
<td width="40" valign="top"><b><font color="#df572d"><img border="0" src="/imgs/intibah.gif"></font></b></td>
|
||||
<td width="536" valign="top"><font color="#df572d"><font style="FONT-SIZE: 8pt; LINE-HEIGHT: 11pt; FONT-STYLE: normal; FONT-FAMILY: verdana; FONT-VARIANT: normal" color="#df572d"><b>Il
|
||||
se peut que la page que vous recherchez ait été supprimée, ait changé de nom ou
|
||||
soit momentanément indisponible.</b></font><b> Veuillez nous excuser de ce
|
||||
désagrément.<br>
|
||||
<br>
|
||||
</b></font><b><font color="#4464a0">Nous vous invitons à revenir à</font><font color="#000000">
|
||||
</font><a href="/index.htm"><font color="#0066ff">la page d'acceuil</font></a><font color="#000000">
|
||||
</font><font color="#4464a0">ou à cliquer sur l'une des rubriques ci-dessous :</font></b></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td width="12" background="/coins/bm_right.gif"> </td>
|
||||
</tr>
|
||||
<tr align="left" valign="top">
|
||||
<td width="12"><img src="/coins/mb0_07.gif" width="12" height="21"></td>
|
||||
<td width="576"></td>
|
||||
<td width="12"><img src="/coins/mb0_08.gif" width="12" height="21"></td>
|
||||
</tr>
|
||||
<tr align="left" valign="top">
|
||||
<td width="12"><img src="/coins/bm_06.gif" width="12" height="4"></td>
|
||||
<td width="576"><img src="/coins/bm_bot.gif" width="576" height="4"></td>
|
||||
<td width="12"><img src="/coins/bm_07.gif" width="12" height="4"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="125%" valign="top" colspan="5"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="25%" valign="top" bgcolor="#f1f7fb"><b><a href="/infos/index.htm"><font color="#0066ff">Chaînes
|
||||
Infos</font></a></b></td>
|
||||
<td width="25%" valign="top" bgcolor="#f1f7fb"><b><a href="/annonces/index.asp"><font color="#0066ff">Annonces</font></a></b></td>
|
||||
<td width="25%" valign="top" bgcolor="#f1f7fb"><b><a href="/pratique/pratique.asp"><font color="#0066ff">Pratique</font></a>
|
||||
</b>
|
||||
</td>
|
||||
<td width="25%" valign="top" bgcolor="#f1f7fb"><b><a href="/communiquer.asp"><font color="#0066ff">Communiquer</font></a>
|
||||
</b>
|
||||
</td>
|
||||
<td width="25%" valign="top" bgcolor="#f1f7fb"><b><a href="/annuaires/index.asp"><font color="#0066ff">Annuaires</font></a>
|
||||
</b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/infos/maroc/index.htm"><font color="#22447e">Maroc</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/infos/USA/index.htm"><font color="#22447e">Monde</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/infos/economie/index.htm"><font color="#22447e">Economie</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/infos/femmes/index.htm"><font color="#22447e">Femmes</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/infos/technologie/index.htm"><font color="#22447e">Technologie</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/infos/sport/index.htm"><font color="#22447e">Sport</font></a></td>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/emploi/index.asp"><font color="#22447e">Emploi</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/annonces/Immobilier/index.asp"><font color="#22447e">Immobilier</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/annonces/AutoMoto/index.asp"><font color="#22447e">Auto-moto</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/annonces/rencontre/index.asp"><font color="#22447e">Rencontres</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/annonces/affaires/index.asp"><font color="#22447e">Bonnes
|
||||
affaires</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/annonces/divers/index.asp"><font color="#22447e">Divers</font></a></td>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/pratique/adress.asp"><font color="#22447e">Liens
|
||||
utiles</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/pratique/shopping.asp"><font color="#22447e">Shopping</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/pratique/cartes.asp"><font color="#22447e">Cartographie</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/pratique/horoscope/index.asp"><font color="#22447e">Horoscope</font></a></td>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/e-mail.asp"><font color="#22447e">Boîte
|
||||
e-mail</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/sms"><font color="#22447e">SMS
|
||||
gratuit</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/forum/forum.asp"><font color="#22447e">Forum</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><font color="#22447e">Chat</font></td>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/pj/index.asp"><font color="#22447e">Pages
|
||||
Jaunes</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/pb/index.asp"><font color="#22447e">Pages
|
||||
Blanches</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/Web/index.asp"><font color="#22447e">Sites
|
||||
Web</font></a><br>
|
||||
<font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/email/emailhome.asp"><font color="#22447e">E-mails</font></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="25%" valign="top"> </td>
|
||||
<td width="25%" valign="top"></td>
|
||||
<td width="25%" valign="top"></td>
|
||||
<td width="25%" valign="top"></td>
|
||||
<td width="25%" valign="top"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="50%" valign="top" bgcolor="#f1f7fb" colspan="2"><b><font color="#0066ff">Mon
|
||||
Menara</font></b></td>
|
||||
<td width="25%" valign="top" bgcolor="#f1f7fb"><b><font color="#0066ff">Divers</font></b></td>
|
||||
<td width="50%" valign="top" bgcolor="#f1f7fb" colspan="2"><b><a href="mailto:support@casanet.net.ma?subject=Demande de support"><font color="#0066ff">Support</font></a></b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/auth/help.asp"><font color="#22447e">Menara
|
||||
Pass<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/Auth/Register_step1.asp"><font color="#22447e">S'inscrire</font></a><font color="#22447e"><br>
|
||||
<img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/e-mail.asp"><font color="#22447e">Ma
|
||||
boîte e-mail<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Mon
|
||||
SMS</font></a></td>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Mon
|
||||
Chat<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/annonces/mesannonces.asp"><font color="#22447e">Mes
|
||||
annonces</font></a><font color="#22447e"><br>
|
||||
<img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Mon
|
||||
CV<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Mes
|
||||
rencontres</font></a></td>
|
||||
<td width="25%" valign="top" bgcolor="#f5f5f5"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/index.htm"><font color="#22447e">Sondage<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/index.htm"><font color="#22447e">Recherche<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="/index.htm"><font color="#22447e">Jeux<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="http://www.casanet-online.com"><font color="#22447e">Stuff</font></a></td>
|
||||
<td width="50%" valign="top" bgcolor="#f5f5f5" colspan="2"><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Support
|
||||
technique<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Assistance
|
||||
à l'utilisation de ce site<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Aide
|
||||
générale<br>
|
||||
</font></a><font color="#22447e"><img border="0" src="/imgs/c.gif" align="absMiddle" hspace="4"></font><a href="#"><font color="#22447e">Vos
|
||||
suggestions</font></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="25%" valign="top"> </td>
|
||||
<td width="25%" valign="top"></td>
|
||||
<td width="25%" valign="top"></td>
|
||||
<td width="25%" valign="top"></td>
|
||||
<td width="25%" valign="top"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="778" bgcolor="#22447e" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td width="100%"><img border="0" src="/imgs/1px.gif"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="778" cellpadding="4" cellspacing="0">
|
||||
<tr>
|
||||
<td width="100%" bgcolor="#4464a0"><a href="http://users.casanet.net.ma/partenaires/mc-times/"><font color="#ffffff"><u>Annoncer
|
||||
sur Menara</u></font></a><font color="#7da2d7"> | </font><a href="http://w3.casanet.net.ma/webNS/wwwEditForm.asp?FormMode=New">
|
||||
<font color="#ffffff"><u>Proposez votre site</u></font></a><font color="#7da2d7">
|
||||
| </font><a href="#"><font color="#ffffff"><u>Ajouter Menara à vos sites favoris</u></font></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="100%" bgcolor="#22447e"><font size="1" face="Verdana" color="#ffffff"><br>
|
||||
E-mail: </font><a href="mailto:menara@casanet.ma"><font size="1" face="Verdana" color="#ffffff">
|
||||
<u>menara@casanet.ma</u></font></a><font size="1" face="Verdana" color="#ffffff">
|
||||
- Tél.: +212 022 95 95 00 - Fax: +212 022 95 95 01</font><font size="1" face="Verdana" color="#5a7db4"><br>
|
||||
</font><font color="#7da2d7"><font size="1" face="Verdana">Copyright </font><font size="1" face="Verdana" color="#7fa1d5">
|
||||
© Menara 2002. Tous droits réservés.</font></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 182 B |
|
After Width: | Height: | Size: 190 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 931 B |
|
After Width: | Height: | Size: 935 B |
@@ -0,0 +1 @@
|
||||
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="120" HEIGHT="600" id="menara_s700_sky" ALIGN=""> <PARAM NAME=movie VALUE="http://www.netad-vantage.net/q4/menara_s700_sky.swf?clickTAG=http://ads.net-ad-vantage.com/RC/20050170/15586/www.sonyericsson.com/spg.jsp?cc=ae%26lc=en%26ver=4000%26template=pp1_loader%26php=php1_10140%26zone=pp%26lm=pp1%26pid=10140"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="http://www.netad-vantage.net/q4/menara_s700_sky.swf?clickTAG=http://ads.net-ad-vantage.com/RC/20050170/15586/www.sonyericsson.com/spg.jsp?cc=ae%26lc=en%26ver=4000%26template=pp1_loader%26php=php1_10140%26zone=pp%26lm=pp1%26pid=10140" quality=high bgcolor=#FFFFFF WIDTH="120" HEIGHT="600" NAME="menara_s700_sky" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>');
|
||||
|
After Width: | Height: | Size: 928 B |
|
After Width: | Height: | Size: 718 B |
|
After Width: | Height: | Size: 189 B |
|
After Width: | Height: | Size: 193 B |
|
After Width: | Height: | Size: 213 B |