function openWin(theURL,winName,features) {
  	var win=window.open(theURL,winName,features);
  	win.focus();
}


function OpenPreviewWindow(targetPage, formName){
	now = new Date  
	openWin('','preview_babysnook','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
  formName.action = targetPage + "?ID=" + now.getTime();	
	formName.target = "preview_babysnook";
	formName.submit();
}