function ActiveKOL_GenerateQuestionFormBlaufarma(serviceId,appAbsoluteUrl, width, height, cssLocation, categoryId)
{        			    
    var url =  appAbsoluteUrl + '/public/formBlaufarma.aspx';
    url += '?ServiceId='+serviceId;
    
    var guid = private_ActiveKOL_getGUID();
    
    if(guid!='')    
        url += '&GUID='+guid;       
    
    if(categoryId!=null)
        url += '&CategoryId='+categoryId;  
      
	if(cssLocation!=null)
		url += '&CssLocation='+cssLocation;
							
	window.document.write ("<iframe allowtransparency=\"true\" width=\" "+width+" \" height=\" "+height+"\" scrolling=\"auto\" frameborder=\"no\" marginwidth=\"0\" marginheight=\"0\" src=\" " + url + "\"></iframe>");
}

function ActiveKOL_GenerateQuestionForm(serviceId,appAbsoluteUrl, width, height, cssLocation, categoryId)
{        			    
    var url =  appAbsoluteUrl + '/public/form.aspx';
    url += '?ServiceId='+serviceId;
    
    var guid = private_ActiveKOL_getGUID();
    
    if(guid!='')    
        url += '&GUID='+guid;       
    
    if(categoryId!=null)
        url += '&CategoryId='+categoryId;  
      
	if(cssLocation!=null)
		url += '&CssLocation='+cssLocation;
							
	window.document.write ("<iframe allowtransparency=\"true\" width=\" "+width+" \" height=\" "+height+"\" scrolling=\"auto\" frameborder=\"no\" marginwidth=\"0\" marginheight=\"0\" src=\" " + url + "\"></iframe>");
}


function ActiveKOL_GenerateQuestionFormGsk(serviceId, appAbsoluteUrl, width, height, cssLocation, categoryId) {

    var url = appAbsoluteUrl + '/public/formGsk.aspx';
    url += '?ServiceId=' + serviceId;

    var guid = private_ActiveKOL_getGUID();

    if (guid != '')
        url += '&GUID=' + guid;

    if (categoryId != null)
        url += '&CategoryId=' + categoryId;

    if (cssLocation != null)
        url += '&CssLocation=' + cssLocation;

    window.document.write("<iframe id=\"activeFrameGSK\" allowtransparency=\"true\" width=\" " + width + " \" height=\" " + height + "\" scrolling=\"auto\" frameborder=\"no\" marginwidth=\"0\" marginheight=\"0\" src=\" " + url + "\"></iframe>");
}



function ActiveKOL_GenerateQuestionFormSzczepienia(serviceId, appAbsoluteUrl, width, height, cssLocation, categoryId) {

    var url = appAbsoluteUrl + '/public/FormSzczepienia.aspx';
    url += '?ServiceId=' + serviceId;

    var guid = private_ActiveKOL_getGUID();

    if (guid != '')
        url += '&GUID=' + guid;

    if (categoryId != null)
        url += '&CategoryId=' + categoryId;

    if (cssLocation != null)
        url += '&CssLocation=' + cssLocation;

    window.document.write("<iframe allowtransparency=\"true\" width=\" " + width + " \" height=\" " + height + "\" scrolling=\"auto\" frameborder=\"no\" marginwidth=\"0\" marginheight=\"0\" src=\" " + url + "\"></iframe>");
}

function ActiveKOL_GenerateQuestionFormOspawietrzna(serviceId,appAbsoluteUrl, width, height, cssLocation, categoryId)
{        			

    var url =  appAbsoluteUrl + '/public/formOspawietrzna.aspx';
    url += '?ServiceId='+serviceId;
    
    var guid = private_ActiveKOL_getGUID();
    
    if(guid!='')    
        url += '&GUID='+guid;       
    
    if(categoryId!=null)
        url += '&CategoryId='+categoryId;  
      
	if(cssLocation!=null)
		url += '&CssLocation='+cssLocation;
							
	window.document.write ("<iframe id=\"activFrameOspawietrzna\" allowtransparency=\"true\" width=\" "+width+" \" height=\" "+height+"\" scrolling=\"auto\" frameborder=\"no\" marginwidth=\"0\" marginheight=\"0\" src=\" " + url + "\"></iframe>");
}

function private_ActiveKOL_getGUID()
{
    var qs = window.location.href;
	var pos =  qs.indexOf('GUID=');	
	if(pos==-1) return ''
	var tmpstr = qs.substring(pos,qs.length);	
	return tmpstr.substring(5,tmpstr.indexOf("&")==-1 ? tmpstr.length : tmpstr.indexOf("&") );
}


