/*@cc_on @*/
/*@if (@_win32)
try {
  document.execCommand('BackgroundImageCache', false, true); } catch(e) {} /*@end @*/
function MeetFriend(link, p)
{
  var pi = p.selectedIndex;
  var s = p.options[pi].value;
  if(s)
  {
    var url = link + s;
    window.open(url, "_blank");
  }
}



function check_select_style(style , msg)
{
	if(style)
	{
		if(style.check)
			return true;

		for(i = 0; i < style.length; i++)
		{
			if(style[i].checked)
			{
				return true;
			}
		}
	}

	alert(msg);
	return false;
}

