');
// Check if flash exists/ version matched
if (hasReqestedVersion) {
AC_FL_RunContent(
"src", pagearSmallSwf+'?'+ queryParams,
"width", thumbWidth,
"height", thumbHeight,
"align", "middle",
"id", "bigSwf",
"quality", "high",
"bgcolor", "#FFFFFF",
"name", "bigSwf",
"wmode", "transparent",
"allowScriptAccess","always",
"type", "application/x-shockwave-flash",
'codebase', 'https://web.archive.org/web/20101223044554/http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
"pluginspage", "https://web.archive.org/web/20101223044554/http://www.adobe.com/go/getflashplayer"
);
} else { // otherwise do nothing or write message ...
document.write('no flash installed'); // non-flash content
}
document.write('
');
}
//added by REMUSH
//for Set cookies
function createCookie(name,value,hours) {
if (hours) {
var date = new Date();
date.setTime(date.getTime()+(hours*60*60));
var expires = "; expires="+date.toGMTString();
}
else expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i