function content_print(){
	link = encodeURIComponent(document.location.href);
	str_print = "print=1";

	if(link.indexOf("?")<0){
		link+= "?"+str_print;
	}
	else{
		link+= "&"+str_print;
	}

	myWindow = window.open(decodeURIComponent(link),'Druckvorschau','width=545,height=700,scrollbars=yes');
}

function form_print(){
	link = encodeURIComponent(document.location.href);
	str_print = "print=1";

	if(link.indexOf("?")<0){
		link+= "?"+str_print;
	}
	else{
		link+= "&"+str_print;
	}

	for(i=0;i<document.printform.elements.length;i++){
		name=document.printform.elements[i].name;
		value=document.printform.elements[i].value;

		link+= "&"+name+"="+value;
	}

	myWindow = window.open(decodeURIComponent(link),'Druckvorschau','width=545,height=700,scrollbars=yes');
}
