function PCMSAD(PID) {
this.ID = PID;
this.PosID = 0;
this.ADID = 0;
this.ADType = "";
this.ADName = "";
this.ADContent = "";
this.PaddingLeft = 0;
this.PaddingTop = 0;
this.Wspaceidth = 0;
this.Height = 0;
this.IsHitCount = "N";
this.UploadFilePath = "";
this.URL = "";
this.SiteID = 0;
this.ShowAD = showADContent;
this.Stat = statAD;
}
function statAD() {
return true;
}
function showADContent() {
var content = this.ADContent;
var str = "";
var AD = eval('('+content+')');
if (this.ADType == "images") {
if (AD.Images[0].imgADLinkUrl) str += "";
str += "
";
if (AD.Images[0].imgADLinkUrl) str += "";
}else if(this.ADType == "flash"){
str += "";
}
str += "";
//document.write(str);
PosID = this.PosID;
if( $('.poster').length ){
$('.poster').each( function(i){
if( $(this).attr('value') == PosID) {
$(this).html(str);
}
});
}else{
document.write(str);
}
//end
}
var cmsAD_19 = new PCMSAD('cmsAD_19');
cmsAD_19.PosID = 19;
cmsAD_19.ADID = 21;
cmsAD_19.ADType = "images";
cmsAD_19.ADName = "无忧爱美网";
cmsAD_19.ADContent = "{'Images':[{'imgADLinkUrl':'https%3A%2F%2Fkr.51aimei.com%2F','imgADAlt':'无忧爱美网赴韩整形','ImgPath':'https://www.51aimei.com/uploadfile/2012/1119/20121119044553389.jpg'}],'imgADLinkTarget':'New','Count':'1','showAlt':'Y'}";
cmsAD_19.URL = "https://www.51aimei.com/index.php?m=poster&c=index";
cmsAD_19.SiteID = 1;
cmsAD_19.Width = 300;
cmsAD_19.Height = 250;
cmsAD_19.UploadFilePath = '';
cmsAD_19.ShowAD();
var isIE=!!window.ActiveXObject;
if (isIE){
if (document.readyState=="complete"){
cmsAD_19.Stat();
} else {
document.onreadystatechange=function(){
if(document.readyState=="complete") cmsAD_19.Stat();
}
}
} else {
cmsAD_19.Stat();
}