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

function openPreviewWin(page,formName){
	//Open the window fisrt
	openWin('','Preview','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
	
	//Submit form to new window
	formName.action = page;
	formName.target = "Preview";
	formName.submit();
}

function changeSkin(selObj) {
  
  if (selObj.options[selObj.selectedIndex].value != 13)
  {
    window.location = '/index.php' + '?skin_id=' + selObj.options[selObj.selectedIndex].value
  }
}
