/*
TwoTweet project pop up box - Govind - 08-April-2010
*/
if(typeof(twoTweet) == "undefined" ){twoTweet = {};}
/* Javascript Class file for TwoTweet Project  */
twoTweet = { 
	showBox:function(title,inlineId,width,height){tb_show(title,"?TB_inline=true&inlineId="+inlineId+"&width="+width+"&height="+height+"&modal=true");},
	
	/*  Hide Pop up box */
	hidebox:function(){tb_remove();}
}

/*------------------------------ Caller functionss ------------------------------*/
/* Javascript Class file for Showbox - Govind - 08-April-2010 */
function showbox(opt)
{
	switch(opt)
	{
		// Mall dates for profile page -- Added 08-08-09 by Govind
		case "add_product" : 
			twoTweet.showBox("thickbox_popup","hidden_add_product",560,180);			
			break;
	}
}

/* Hide the box - Govind - 08-April-2010*/
function hidebox(opt)
{	

	switch(opt)
	{
		// My Dates to Remember Add events form -- Added 03-08-09 by Govind
		case "add_product" : 
			// Unsetting the input values and alert messages
			jQuery("#product_name").val('');
			break;
	}
	twoTweet.hidebox();
}

/**
 *  Redirect to the respective selected product add page - Govind - 08-April-2010
 * */ 
function goToAddProductPage() {
  var url = jQuery("#product_name").val();
  if (url == '') {
    alert("Please select the product");
    return false;
  }
  location.href = url;
}

function resetProductPage() {
  jQuery("#product_name").val("");
}

