function ACpost(auctionID, mfgname, userid,username, mfgid)
	{
	
				
		if (document.all)
		{
		
		//document.shop.action = "http://192.182.120.210/ac/detail.asp?ID=" + auctionID
		document.shop.action = "http://www.auctioncomponents.com/ac/detail.asp?ID=" + auctionID
		document.shop.method = "post";
		document.shop.target = "_blank";
		document.shop.innerHTML="<INPUT TYPE=HIDDEN NAME='mfgname' VALUE='"+mfgname+"'>";
	        document.shop.innerHTML += "<INPUT TYPE=HIDDEN NAME='userid' VALUE='"+ userid +"'>";
        	document.shop.innerHTML += "<INPUT TYPE=HIDDEN NAME='username' VALUE='"+ username +"'>";
		document.shop.innerHTML += "<INPUT TYPE=HIDDEN NAME='mfgID' VALUE='"+ mfgid+"'>";
        	//alert(document.shop.innerHTML );
        	document.shop.submit();
		}

		else
		{
		//window.document.clear(); 
		//window.document.open();
		window.document.writeln("</head>")
		window.document.writeln("<body><p>")
		window.document.writeln("<form name=test method='post' action=http://www.auctioncomponents.com/ac/detail.asp?ID=" + auctionID + ">");
		window.document.writeln("<INPUT TYPE=HIDDEN NAME='mfgname' VALUE='"+mfgname+"'>");
		window.document.writeln("<INPUT TYPE=HIDDEN NAME='userid' VALUE='"+ userid +"'>");
		window.document.writeln("<INPUT TYPE=HIDDEN NAME='username' VALUE='"+ username +"'>");
		window.document.writeln("<INPUT TYPE=HIDDEN NAME='mfgid' VALUE='"+ mfgid +"'>");
		window.document.writeln("</form></body></html>");
//		window.document.close(); 
		window.document.test.submit(); 
		}
		
	}







function formpost(mname,val,ActionUrl,makeHidden)
	{
	
		if (document.all)
		{
		
		document.shop.action = "http://" + ActionUrl;
		document.shop.method = "post";
		document.shop.innerHTML="<INPUT TYPE=HIDDEN NAME='" + mname+"' VALUE='"+val+"'>";
        document.shop.innerHTML += makeHidden;
        document.shop.submit();
		}

		else
		{
		//window.document.clear(); 
		//window.document.open();
		window.document.writeln("</head>")
		window.document.writeln("<body><p>")
		window.document.writeln("<form name=test method='post' action=http://" +ActionUrl + ">");
		window.document.writeln("<INPUT TYPE=HIDDEN NAME='" + mname+"' VALUE='"+val+"'>" + makeHidden);
		window.document.writeln("</form></body></html>");
		window.document.close(); 
		window.document.test.submit(); 
		}
		
	}


