function popUpWin(item)




{




	var page = "index.html" + item;




	var winspecs = "width=580,height=480,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";




	popper=window.open(page,"item",winspecs);




}





function popUpWinSize(item,width,height)
{

	var page = "index.html" + item;

	var winspecs = "width=" + width + ",height=" + height + ",location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";

	popper=window.open(page,"item",winspecs);

}

function samplePopUpWin()




{




	var page = "sampler1.html";




	var winspecs = "width=560,height=387,location=no,toolbar=no,menubar=no,scrollbar=no,resizeable=no";




	sampler=window.open(page,"sample",winspecs);




}