function openPrintWindow( baseUrl, query) 
{
	win = baseUrl + 'wa/callPage?' + query + '&containerLayout=KlingerPrintTemplate';
  	theWindow = window.open(win,'PrintTemplate','resize=no,toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,width=670,height=520');
	theWindow.opener = this;
}

function openPrintCatalogWindow( baseUrl, query) 
{
	win = baseUrl + 'wa/callPage?' + query + '&containerLayout=KlingerPrintCatalogTemplate';
  	theWindow = window.open(win,'PrintTemplate','resize=no,toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,width=670,height=520');
	theWindow.opener = this;
}



function openCertWindow( baseUrl, atID, wosid) {
	win = baseUrl + 'wa/callPage?page=pag5051&wosid='+wosid+'&atID='+atID+'&type=product&containerLayout=KlingerBlankTemplate';
	theWindow = window.open(win,'Zertifikat','resize=yes,toolbar=yes,scrollbars=yes,directories=no,status=yes,menubar=yes');
	theWindow.opener = this;
	win = baseUrl + 'wa/callPage?page=pag5051&wosid='+wosid+'&atID='+atID+'&type=material&containerLayout=KlingerBlankTemplate';
	theWindow = window.open(win,'Material','resize=yes,toolbar=yes,scrollbars=yes,directories=no,status=yes,menubar=yes');
	theWindow.opener = this;
}

function openCertWindowPDF( baseUrl, pdfUrl) 
{
	win = pdfUrl;
  	theWindow = window.open(win,'Zertifikat','resize=yes,toolbar=yes,scrollbars=yes,directories=no,status=yes,menubar=yes');
	theWindow.opener = this;

}

function openNewWindow(width, height, target, windowName)
{
     winStr = 'resize=no,toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,width=' + width + ',height=' + height + '\'';
     theWindow = window.open(target,windowName,winStr);
}