[SalesForce] Date picker on Force.com..

I want to show a date-picker on a public site(Force.com site).I am updating Opportunity records using some variables from force.com site.But how to show a date field..

I have tried this its showing fine in VF page but it is not showing a pop calender on Force.com sites.

<apex:inputText size="10" id="queryDate" onfocus="DatePicker.pickDate(false, this, false);"/>

Can someone help with me with this..how to show a date pop calendar on sites so i can take the input and save that in Salesforce..

Best Answer

How about:

<apex:input value="{!myDateVar}" type="date"/>