$(document).ready(function(){
		$('.mixplay').click(function(){
			var url=$(this).attr('url');
			var type=$(this).attr('type');
			if(type==1){
				window.open( url, "mixPlay", "status = 1, height = 450, width = 600, resizable = 0" );
			}else{
				window.open( url, "mixPlay", "status = 1, height = 230, width = 280, resizable = 0" );
			};
		});
});
