﻿function LaunchQuote(urlprefix,policyType,isNewQuote,flags,enquiryType,feedName,cat)
{
    if (urlprefix != "")
    urlprefix += "Site/";
	var str = urlprefix + "start.aspx";
	str += "?policyType=" + policyType;
	str += "&isNewQuote=" + isNewQuote;
	
	if (flags != null)
		str += "&flags=" + flags;
	
	if (enquiryType != null)
		str += "&enq=" + enquiryType;
		
	if (feedName != null)
		str += "&feed=" + feedName;				
				
	if (cat != null)
		str += "&cat=" + cat;
		
	if (flags != null && ((flags & 8) || (flags & 16) || (flags & 32))) 
	{
		window.location = str;
//		window.open(str,"","width=910,height=850,location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no,status=yes");
	}
	else
		window.open(str,"","width=1000,height=745,location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no,status=yes");
}

			
																   

