
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//定义窗口尺寸等
var w_height=320;
var w_width=550;

var w_name="95彩信发送";
var w_features="top=10,left=10,width="+w_width+",height="+w_height+",resizable=yes";


function OpenSend(id,thetype,smsid){
//thetype:1-彩图,2-动画 3-铃声 4-特殊音效	
var sendUrl;
var sendurl_site = "";
/*
Today = new Date();
rand = Today.getSeconds();
idrand = rand % 10 +1;
if(idrand<3) {
	sendurl_site = "";
} else if(idrand<6) {
	sendurl_site = "";
}else if(idrand<9) {
	sendurl_site = "";
} else {
	sendurl_site = "";
} 
*/
	sendUrl = sendurl_site + "http://mms1.95ol.com.cn/mmssend/send1.aspx?sendtype="+ thetype +"&pID="+id+"&smsid="+smsid;

	/*
	switch(thetype){
		case 1:
			sendUrl = sendurl_site + "http://mms1.95ol.com.cn/mmssend/send1.aspx?sendtype=1&pID="+id+"&smsid="+smsid;
			break
		case 2:
			sendUrl = sendurl_site + "http://mms1.95ol.com.cn/mmssend/send1.aspx?sendtype=2&pID="+id+"&smsid="+smsid;
			break
		case 3:
			sendUrl = sendurl_site + "http://mms1.95ol.com.cn/mmssend/send1.aspx?sendtype=3&pID="+id+"&smsid="+smsid;
			break
		case 4:
			sendUrl = sendurl_site + "http://mms1.95ol.com.cn/mmssend/send1.aspx?sendtype=4&pID="+id+"&smsid="+smsid;
			break
	}
	*/
	
	window.open(sendUrl,w_name,w_features)
}