Javascript在列中不起作用

I'm using this http://www.proglogic.com/code/javascript/calculator/bmi.php Body Mass Index calculator javascript for my wordpress website.

It works in wordpress sidebar, works also on wordpress simple page.

But doesn't work on main page http://prc.ge/?lang=en between the columns

[column width="1/4" title="" title_type="single" animation="none" implicit="true"][/column]

Any solution?!

If you look carefully at the code of your pages, then will you see that you do not have any javascript call in the page that is returning no information.

If you have Firebug installed on your Firefox, then can you see that. The line in your official website is:

<input type="button" value="ინდექსის გამოთვლა">

where in your wordpress site it is:

<input type="button" onclick="calculateBmi()" value="Calculate">

Adding the onclick-event will help.