function openCelWindow(url, name)
		{
  			popupWin = window.open(url, name,  'scrollbars,resizable,width=400,height=400,left=10,top=10')
		}
				
function wallpaperWindow(theURL)
			{
			theName = "wallpaper";
			theFeatures = "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=490";
			window.open(theURL,theName,theFeatures);
			}

		function wallpaperWindow1(theURL, width, height)
			{
			theName = "wallpaper";
			theFeatures = "width=" + width + ",height=" + height;
			window.open(theURL,theName,theFeatures);
			}