problem solved 🙂 What i did is I have called one function onclick event of the link inside iframe and set its target as blank.
Here is the function..
function redirectMe(location)
{
window.open(location);
return false;
}
And it worked....
HTH to someone....🙂