function openDesignWindow(theURL) {
	openedWindow=window.open(theURL,'SANYO_DESIGN','scrollbars=no,resizable=no,width=980,height=640');
	x = (screen.width - 980)/2;
	y = (screen.height - 640)/2;
	openedWindow.moveTo(x, y);
	openedWindow.focus();
}

function openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}