function winopen(url,width,height){
	window.open(url,'','width='+width+',height='+height+',scrollbars=auto,menubars=no');
}

function winmovie(url,width,height){
	window.open(url,'','width='+width+',height='+height+',scrollbars=auto,menubars=no');
}

var mToggle = function(obj){
	var type = obj.type;
	if(type == 1){
		$("#hmainplay1").slideToggle(200);
		$("#hmainplay2").hide();
		$("#hmainplay3").hide();
	}else if(type ==2 ){
		$("#hmainplay2").slideToggle(200);
		$("#hmainplay1").hide();
		$("#hmainplay3").hide();
	}else{
		$("#hmainplay3").slideToggle(200);
		$("#hmainplay1").hide();
		$("#hmainplay2").hide();
	}
}
