﻿//Author:shaozh
function setJumpList()
{
	var links=new Array("","http://fashion.ifeng.com/hot/ifashion/valentinesday09/","http://fashion.ifeng.com/hot/ifashion/200902/d989722/","http://fashion.ifeng.com/hot/200901/d981280/","http://fashion.ifeng.com/hot/2009/200901/d981569/");
	var texts=new Array("选择往期","第04期","第03期","第02期","第01期");
	var sel = document.getElementById("sel");
	for(var i=0;i<links.length;++i)
	{
		var opt = document.createElement("OPTION"); 
		opt.text=texts[i].toString(); 
		opt.value=links[i].toString(); 
		if(navigator.userAgent.indexOf("Firefox")>0){
			sel.appendChild(opt); 	
		}else{
			sel.add(opt);
		}
	}
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  if (targ=="blank") window.open(selObj.options[selObj.selectedIndex].value);
  else eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
  if(selObj.options[selObj.selectedIndex].value == ""){
  	alert("请选择一期周刊");
  }
}
