function special()	{
	var opens = '/special/action.php';
	var win = "width=550,height=300,menubar=no,location=no,resizable=yes,scrollbars=yes";
	newWin = window.open(opens,'newWin',win);
	newWin.focus();
}

function fullImg(url, w,h)	{
	//var opens = '/popup.php';
	var opens = url;
	var win = "width=" + w + ", height=" + h + ", menubar=no, location=no, resizable=yes, scrollbars=yes";
	newImg = window.open(opens,'newImg',win);
	newImg.focus();
}
