finally i got the solution after a long research.. with shell script
function OpenSchedule(url,MSPSServerName)
{
var test;
test ='\"C:\\Program Files\\Microsoft Office\\Office12\\winproj.exe\" /s ';
test=test+'\"'+MSPSServerName+'\" ';
test=test+'\"<>\\'+url+'\"';
var WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(test);
}
.....ramesh
