initModule({
	moduleID : 'checkdomainsys_search',
	newWindow : false,
	imagesFolder : function(){
		return document.scripts[document.scripts.length - 1];
	}(),
		
	domName :
			{
				tL : 'checkdomainsys_search_topL',
				tR : 'checkdomainsys_search_topR',
				bL : 'checkdomainsys_search_bottomL',
				bR : 'checkdomainsys_search_bottomR',
				s : 'checkdomainsys_searchMarquee'
			},
				
	title : 
			{
				id : 'checkdomainsys_search_topL',
				text : ""
			},
				
	linkInfo :
			{
				down : 
					{
						id   : 'checkdomainsys_search_bottomR',
						type : 'none',
						text : "more",
						url  : '/',
						imgID : ['checkdomainsys_search_linkdown_prev','checkdomainsys_search_linkdown_next','checkdomainsys_search_linkdown_first','checkdomainsys_search_linkdown_last'],
						imgUrl  : ['','','',''] /*****/
					},
				up :
					{
						id   :'checkdomainsys_search_topR',
						type : 'none',
						text : "more",
						url  : '/',
						imgID : ['checkdomainsys_search_linkup_prev','checkdomainsys_search_linkup_next','checkdomainsys_search_linkup_first','checkdomainsys_search_linkup_last'],
						imgUrl  : ['','','',''] /*****/
					}
			},
		
	loopNumber :
			{
				enable : false,
				content : ""
			},
				
	marquee :
			{
				id : 'checkdomainsys_search_marquee',
				enable :  false,
				width : 760,
				height : 52,
				direction : 'bottom',
				step : 1,
				timer :50,
				delayTime : 5000,
				waitTime : 760,
				scrollStep : 52,
				margin : ['9px','9px','9px','9px']
			}
			
});
function checkSearchDomain(siteid){
	var searchUrl = "page-domainsearchresult-" + siteid;
	var searchKey = document.getElementById('domain').value.replace(/\s/g,'');
	searchUrl += '-' + searchKey;
	
	var domAyy = [];
	for(var i = 0; i < document.getElementById('domainlist').getElementsByTagName('input').length; i++){
		if(document.getElementById('domainlist').getElementsByTagName('input')[ i ].checked){
			domAyy.push(document.getElementById('domainlist').getElementsByTagName('input')[ i ].getAttribute('name'));
		}
	}
	
	searchUrl += '-' + ( (domAyy.length) ? domAyy.join(',') : 'com,cn') + '.html';
	
	window.location = searchUrl;
	return false;
	/*
	/page-paycomplete-1238-aaee-com,cn,net.html
	*/
}
/*模块*/