function NewWindow(mypage, myname, w, h, scroll, res)
{
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+res;
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion)>=4)
	{
		win.window.focus();
	}
}
function design()
{
  widths = 383;
  heights = 757;
  urls = "feedback.html";
  win = NewWindow(urls, 'feedback', widths, heights, 'no','no');
  width = 800;
  height = 600;
  url = "http://design.inmode.net/userinit.php?customer=6&cusprd=17";
  win = NewWindow(url, 'design', width, height, 'yes','yes');
}