/*
	Module Name:- USER
	File Name  :- model_details.js
	Create Date:- 04-MARCH-2006
	Intially Create By :- 0023Shivani
	Update History:
*/

function display_model_image(str_path)
{
	
	if (document.images && preloadFlag == true) 
	{
		if(str_path=="noimage")
		{
			document.large_image.src = 'images/image_not_available.jpg';
		}
		else
		{
			document.large_image.src = str_path;
		}
	}
}

function confirm_vote()
{
	with(document.frm_vote)
	{
	if(confirm("Are you sure you want to vote for this model?"))
	{
		if(confirm("Confirmation: Click 'Ok' to vote for this model or 'Cancel' to cancel."))
		{
			return true;
		}
	}
	return false;
	}
}


