function addSprookaForm(){
	var el = document.createElement('div');
	el.innerHTML = "<form name='sprookaForm' id='sprookaForm' target='Sprooka' method='Post'><input type='hidden' name='sprookaData' id='sprookaData'></form>"
	document.body.appendChild(el);
} 
addSprookaForm();
function doSprooka(el) {
	h=490;
	w=706;
	l=(screen.availWidth - w) / 2;
	p=(screen.availHeight - h) / 2;
	ft = 'left=' + l + ',top=' + p + ',width=' + w + ',height=' + h + ',toolbar=0,location=0,status=0,scrollbars=0,resizable=0';
	win=window.open('','Sprooka',ft);

	var f = document.getElementById(el);
	var t = document.getElementById('sprookaData');
	if (f.tagName == 'INPUT' || f.tagName == 'TEXTAREA') 
		t.value = f.value;
	else
		if (document.all)
			t.value = f.innerText;
		else
			t.value = f.innerHTML.replace(/<\/?[^>]+>/gi,'');

	if (document.location.href.toLowerCase().indexOf('//localhost/sprooka/') > -1) document.sprookaForm.action='http://localhost/sprooka/sprooka.aspx';
	else document.sprookaForm.action='http://www.sprooka.com/sprooka.aspx';	

	window.setTimeout('document.sprookaForm.submit();',500);
	win.focus();
}
