var _intHelpMaxWidth = 950; var _intHelpMaxHeight = 700; function showHelp_Pricing(intCategoryID){ showHelp("http://www.ifreelance.com/help/standalone/pricing.aspx?CategoryID=" + intCategoryID.toString(), _intHelpMaxWidth, _intHelpMaxHeight, true, true); } function showHelp_PrivacyPolicy(){ showHelp("http://www.internetbrands.com/ib/privacy/employment-portfolio?site=www.ifreelance.com", 550, 480, true, true); } function showHelp_SamplePaymentTerms(){ showHelp("http://www.ifreelance.com/help/standalone/samplepaymentterms.aspx", 490, 350, false, false); } function showHelp_ServiceAgreement(){ showHelp("http://www.internetbrands.com/ib/terms/employment-portfolio?site= www.ifreelance.com", 550, 480, true, true); } function showHelp_Tasks(){ showHelp("http://www.ifreelance.com/help/standalone/tasks.aspx", 475, 350, false, false); } function showHelp_FAQAnswer(intQuestionID){ showHelp("http://www.ifreelance.com/help/standalone/faqanswer.aspx?QID=" + intQuestionID.toString(), 600, 400, false, true); } function showHelp(strPage, intWidth, intHeight, blnResizable, blnScroll){ var strOptions = "width=" + intWidth.toString() + ", height=" + intHeight.toString() + ", top=50, left=50, status=no, toolbar=no, menubar=no, location=no, resizable=" + toOption(blnResizable) + ", scrollbars=" + toOption(blnScroll); window.open(strPage, null, strOptions); } function toOption(blnValue){ return (blnValue ? "yes" : "no"); }