// JavaScript Document
function newwin()
{
	window.open('k3series/index.asp','','top=25 left=50  height=598 width=728 scrollbars=1 resizable=yes');
}
function newwindow()
{
	window.open('../k3series/index.asp','','top=25 left=50 height=598 width=728 scrollbars=1 resizable=yes');
}

function addToCart(id)
{
	var temp = document.getElementById(id).value;
	var temp_url = "../cart/addtocart.asp?code=";
	var url_str = temp_url + temp;
//		alert(url_str);
	window.open(url_str,'','top=120 left=120 width=300 height=120 resizable=no');		
}

