// JavaScript Document

//alert("hi");

function newWin (dest) {
	var settings   = "fullscreen=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,status=yes,width=400,height=360";

	//this.blur();
	
	if ( dest=="privacy" ) {
		var daURL = "http://www.kanayatea.com/privacy.html";
		TheNewWin=window.open(daURL,'newWin',settings);
		TheNewWin.focus();
	}
	
	if ( dest=="shipping" ) {
		var daURL = "http://www.kanayatea.com/shipping.html";
		TheNewWin=window.open(daURL,'newWin',settings);
		TheNewWin.focus();
	}
}
