function login()
{
alert("此软件功能提供给正式用户使用，请免费注册或购买后访问。");

}
function login2()
{
alert("该功能仅提供给已购买用户，请升级为高版本用户后使用。");
}
function gotourl(url){

top.window.opener = top;
top.window.open('','_self','');
top.window.close();

window.open(url+'/user/productList.shtml');
}
function login3(url)
{
alert("该功能仅提供给已购买用户，请升级为高版本用户后使用。");
window.open(url+'user/userBuy.shtml');
}
<!--
function buttonsubmit(id){
	var form = document.getElementById(id);	
	var temp = form.action.substring(0,form.action.indexOf('.'));
	for(var i=0;i<form.elements.length - 1;i=i+1){
		temp = temp + "/_" + form.elements.item(i).name + "_" + form.elements.item(i).value;
	}
	temp=temp+".shtml"
	alert(temp)
	verification(temp);
}
-->