//	'-------------------------------------------------------------
//	' ACT Guestbook
//	' http://www.act4you.de/
//	'
//	' Version 1.0	                   18.06.2002
//	' Copyright (c) 2002, Gerhard Buchner.
//	'
//	' ACT Guestbook is distributed with GPL License.
//	' Redistribution and use in source and binary forms, 
//	' with or without modification, are permitted provided 
//	' that the following conditions are met:
//	'
//	' Redistributions of source code must retain the above 
//	' copyright notice, the list of conditions and the disclaimer
//	' in license.txt.
//	'
//	'-------------------------------------------------------------

popupWin = null;

function OpenPreview()
{
	zu();
	var curCookie = "strMessagePreview=" + escape(document.forms[0].Entry.value);
	var URL;
	URL = "preview.asp?"
	if (document.forms[0].Name != undefined)
	{
		if (document.forms[0].Name.value == "")
		{
			document.forms[0].Name.focus();
			return;
		}
		URL += "Name=" + document.forms[0].Name.value;
	}
	
	if (document.forms[0].EMail != undefined)
	{
		URL += "&EMail=" + document.forms[0].EMail.value;
	}
	
	if (document.forms[0].Homepage != undefined)
	{
		URL += "&Homepage=" + document.forms[0].Homepage.value;
	}
	
	if (document.forms[0].Extra1 != undefined)
	{
		URL += "&Extra1=" + document.forms[0].Extra1.value;
	}
	
	if (document.forms[0].Extra2 != undefined)
	{
		URL += "&Extra2=" + document.forms[0].Extra2.value;
	}
	
	if (document.forms[0].Extra3 != undefined)
	{
		URL += "&Extra3=" + document.forms[0].Extra3.value;
	}
	
	document.cookie = curCookie;
	popupWin = window.open(URL, 'preview_page', 'location=no,scrollbars=yes,width=750,height=450');
	window.popupWin.focus();
}

function zu()
{
   if (popupWin != null)
     if (!popupWin.closed)
       popupWin.close();
}

