// Projekt-Popup ****************************************************
function popProjekt(strURL) {

var strWidth="600";
var strHeight="360";
var strTop="200";
var strLeft="300";
var strOptions="resizable,height="+strHeight+",width="+strWidth+",top="+strTop+",left="+strLeft;

newWindow = window.open(strURL, 'winProjekt', strOptions);
newWindow.document.close();
newWindow.focus();
}
// Ende Projekt-Popup ****************************************************

// Kontakt-Popup ****************************************************
function popKontakt(strURL) {

var strWidth="420";
var strHeight="500";
var strTop="100";
var strLeft="200";
var strOptions="resizable,height="+strHeight+",width="+strWidth+",top="+strTop+",left="+strLeft;

newWindow = window.open(strURL, 'winKontakt', strOptions);
newWindow.document.close();
newWindow.focus();
}
// Ende Kontakt-Popup ****************************************************
